blob: c250bb98cd48f928f415ba6001c5402962ceaf56 [file] [log] [blame]
/*
* Copyright (c) 2018 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __TEST_LIFO_USAGE_H__
#define __TEST_LIFO_USAGE_H__
#include <zephyr/sys/slist.h>
typedef struct ldata {
sys_snode_t snode;
uint32_t data;
} ldata_t;
#endif