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>
15 lines
249 B
C
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
|