zephyr_stdint.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (c) 2019 BayLibre SAS
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_STDINT_H_
  7. #define ZEPHYR_INCLUDE_TOOLCHAIN_STDINT_H_
  8. /*
  9. * Some gcc versions and/or configurations as found in the Zephyr SDK
  10. * (questionably) define __INT32_TYPE__ and derrivatives as a long int
  11. * which makes the printf format checker to complain about long vs int
  12. * mismatch when %u is given a uint32_t argument, and uint32_t pointers not
  13. * being compatible with int pointers. Let's redefine them to follow
  14. * common expectations and usage.
  15. */
  16. #if __SIZEOF_INT__ != 4
  17. #error "unexpected int width"
  18. #endif
  19. #undef __INT32_TYPE__
  20. #undef __UINT32_TYPE__
  21. #undef __INT_LEAST32_TYPE__
  22. #undef __UINT_LEAST32_TYPE__
  23. #undef __INT64_TYPE__
  24. #undef __UINT64_TYPE__
  25. #define __INT32_TYPE__ int
  26. #define __UINT32_TYPE__ unsigned int
  27. #define __INT_LEAST32_TYPE__ __INT32_TYPE__
  28. #define __UINT_LEAST32_TYPE__ __UINT32_TYPE__
  29. #define __INT64_TYPE__ long long int
  30. #define __UINT64_TYPE__ unsigned long long int
  31. /*
  32. * The confusion also exists with __INTPTR_TYPE__ which is either an int
  33. * (even when __INT32_TYPE__ is a long int) or a long int. Let's redefine
  34. * it to a long int to get some uniformity. Doing so also makes it compatible
  35. * with LP64 (64-bit) targets where a long is always 64-bit wide.
  36. */
  37. #if __SIZEOF_POINTER__ != __SIZEOF_LONG__
  38. #error "unexpected size difference between pointers and long ints"
  39. #endif
  40. #undef __INTPTR_TYPE__
  41. #undef __UINTPTR_TYPE__
  42. #define __INTPTR_TYPE__ long int
  43. #define __UINTPTR_TYPE__ long unsigned int
  44. #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_STDINT_H_ */