blob: 1e53493d961e922f4e43fa3850c5f6da95070470 [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 <sys/slist.h>
typedef struct ldata {
sys_snode_t snode;
uint32_t data;
} ldata_t;
#endif