zephyr.h 407 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2015 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_ZEPHYR_H_
  7. #define ZEPHYR_INCLUDE_ZEPHYR_H_
  8. /*
  9. * Applications can identify whether they are built for Zephyr by
  10. * macro below. (It may be already defined by a makefile or toolchain.)
  11. */
  12. #ifndef __ZEPHYR__
  13. #define __ZEPHYR__
  14. #endif
  15. #include <kernel.h>
  16. #endif /* ZEPHYR_INCLUDE_ZEPHYR_H_ */