Anas Nashif | 8b45f4e | 2015-10-21 07:24:39 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Intel Corporation |
| 3 | * |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 4 | * SPDX-License-Identifier: Apache-2.0 |
Anas Nashif | 8b45f4e | 2015-10-21 07:24:39 -0400 | [diff] [blame] | 5 | */ |
| 6 | |
Flavio Ceolin | 67ca176 | 2018-09-14 10:43:44 -0700 | [diff] [blame] | 7 | #ifndef ZEPHYR_INCLUDE_ZEPHYR_H_ |
| 8 | #define ZEPHYR_INCLUDE_ZEPHYR_H_ |
Anas Nashif | 8b45f4e | 2015-10-21 07:24:39 -0400 | [diff] [blame] | 9 | |
Paul Sokolovsky | 0c6df2d | 2017-03-08 12:37:57 +0100 | [diff] [blame] | 10 | /* |
| 11 | * Applications can identify whether they are built for Zephyr by |
| 12 | * macro below. (It may be already defined by a makefile or toolchain.) |
| 13 | */ |
| 14 | #ifndef __ZEPHYR__ |
| 15 | #define __ZEPHYR__ |
| 16 | #endif |
| 17 | |
Benjamin Walsh | 5d23818 | 2016-09-02 16:59:34 -0400 | [diff] [blame] | 18 | #include <kernel.h> |
Benjamin Walsh | 5d23818 | 2016-09-02 16:59:34 -0400 | [diff] [blame] | 19 | |
Flavio Ceolin | 67ca176 | 2018-09-14 10:43:44 -0700 | [diff] [blame] | 20 | #endif /* ZEPHYR_INCLUDE_ZEPHYR_H_ */ |