stdint.h 799 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_LIB_LIBC_NEWLIB_INCLUDE_STDINT_H_
  7. #define ZEPHYR_LIB_LIBC_NEWLIB_INCLUDE_STDINT_H_
  8. /* Work around -ffreestanding absence of defines required to support
  9. * PRI.64 macros in <inttypes.h> by including the newlib header that
  10. * provides the flag macros.
  11. */
  12. #include <newlib.h>
  13. #ifdef __NEWLIB__
  14. /* Has this header. Older versions do it in <stdint.h>. */
  15. #include <sys/_stdint.h>
  16. #endif /* __NEWLIB__ */
  17. /* This should work on GCC and clang.
  18. *
  19. * If we need to support a toolchain without #include_next the CMake
  20. * infrastructure should be used to identify it and provide an
  21. * alternative solution.
  22. */
  23. #include_next <stdint.h>
  24. #endif /* ZEPHYR_LIB_LIBC_NEWLIB_INCLUDE_STDINT_H_ */