We were missing license boilerplate in many files, add them Jira: ZEP-1464 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
18 lines
259 B
C
18 lines
259 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __TEST_FIFO_H__
|
|
#define __TEST_FIFO_H__
|
|
|
|
#include <ztest.h>
|
|
#include <irq_offload.h>
|
|
|
|
typedef struct qdata {
|
|
sys_snode_t snode;
|
|
u32_t data;
|
|
} qdata_t;
|
|
#endif
|