/* * Copyright (c) 2017 Intel Corporation. * * SPDX-License-Identifier: Apache-2.0 */ #ifndef __TEST_FIFO_H__ #define __TEST_FIFO_H__ #include #include typedef struct fdata { sys_snode_t snode; uint32_t data; } fdata_t; #endif