2015-10-21 07:24:39 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation
|
|
|
|
*
|
2017-01-18 17:01:01 -08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-10-21 07:24:39 -04:00
|
|
|
*/
|
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#ifndef ZEPHYR_INCLUDE_ZEPHYR_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ZEPHYR_H_
|
2015-10-21 07:24:39 -04:00
|
|
|
|
2017-03-08 12:37:57 +01: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-02 16:59:34 -04:00
|
|
|
#include <kernel.h>
|
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#endif /* ZEPHYR_INCLUDE_ZEPHYR_H_ */
|