2015-10-21 19:24:39 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-10-21 19:24:39 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_ZEPHYR_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ZEPHYR_H_
|
2015-10-21 19:24:39 +08:00
|
|
|
|
2017-03-08 19:37:57 +08:00
|
|
|
/*
|
|
|
|
* Applications can identify whether they are built for Zephyr by
|
|
|
|
* macro below. (It may be already defined by a makefile or toolchain.)
|
|
|
|
*/
|
|
|
|
#ifndef __ZEPHYR__
|
|
|
|
#define __ZEPHYR__
|
|
|
|
#endif
|
|
|
|
|
2016-09-03 04:59:34 +08:00
|
|
|
#include <kernel.h>
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_ZEPHYR_H_ */
|