int_limits.h 668 B

12345678910111213141516171819202122232425262728
  1. /* DO NOT EDIT THIS FILE.
  2. It has been auto-edited by fixincludes from:
  3. "fixinc/tests/inc/sys/int_limits.h"
  4. This had to be done to correct non-standard usages in the
  5. original, manufacturer supplied header file. */
  6. #if defined( SOLARIS_INT_LIMITS_1_CHECK )
  7. #define UINT8_MAX (255)
  8. #define UINT16_MAX (65535)
  9. #endif /* SOLARIS_INT_LIMITS_1_CHECK */
  10. #if defined( SOLARIS_INT_LIMITS_2_CHECK )
  11. #define INT_FAST16_MAX INT32_MAX
  12. #define UINT_FAST16_MAX UINT32_MAX
  13. #define INT_FAST16_MIN INT32_MIN
  14. #endif /* SOLARIS_INT_LIMITS_2_CHECK */
  15. #if defined( SOLARIS_INT_LIMITS_3_CHECK )
  16. #define SIZE_MAX 4294967295U
  17. #endif /* SOLARIS_INT_LIMITS_3_CHECK */