2015-10-21 13:24:39 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation
|
|
|
|
*
|
2017-01-19 02:01:01 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-10-21 13:24:39 +02:00
|
|
|
*/
|
|
|
|
|
2018-09-14 19:43:44 +02:00
|
|
|
#ifndef ZEPHYR_INCLUDE_ZEPHYR_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ZEPHYR_H_
|
2015-10-21 13:24:39 +02: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 22:59:34 +02:00
|
|
|
#include <kernel.h>
|
|
|
|
|
2018-09-14 19:43:44 +02:00
|
|
|
#endif /* ZEPHYR_INCLUDE_ZEPHYR_H_ */
|