zephyr/tests/kernel/lifo/lifo_usage/src/lifo_usage.h
Anas Nashif 536dd5a71f cleanup: include/: move misc/slist.h to sys/slist.h
move misc/slist.h to sys/slist.h and
create a shim for backward-compatibility.

No functional changes to the headers.
A warning in the shim can be controlled with CONFIG_COMPAT_INCLUDES.

Related to #16539

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-06-27 22:55:49 -04:00

15 lines
249 B
C

/*
* Copyright (c) 2018 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __TEST_LIFO_USAGE_H__
#define __TEST_LIFO_USAGE_H__
#include <sys/slist.h>
typedef struct ldata {
sys_snode_t snode;
u32_t data;
} ldata_t;
#endif