stdint-hpux11.h 880 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* DO NOT EDIT THIS FILE.
  2. It has been auto-edited by fixincludes from:
  3. "fixinc/tests/inc/stdint-hpux11.h"
  4. This had to be done to correct non-standard usages in the
  5. original, manufacturer supplied header file. */
  6. #if defined( HPUX_C99_INTPTR_CHECK )
  7. #define PTRDIFF_MAX (2147483647l)
  8. #define PTRDIFF_MIN (-PTRDIFF_MAX - 1)
  9. #define INTPTR_MAX (2147483647l)
  10. #define INTPTR_MIN (-INTPTR_MAX - 1)
  11. #define UINTPTR_MAX (4294967295ul)
  12. #define SIZE_MAX (4294967295ul)
  13. #endif /* HPUX_C99_INTPTR_CHECK */
  14. #if defined( HPUX_C99_INTTYPES2_CHECK )
  15. #define INT8_C(__c) (__c)
  16. #define UINT8_C(__c) (__c)
  17. #define INT16_C(__c) (__c)
  18. #define UINT16_C(__c) (__c)
  19. #endif /* HPUX_C99_INTTYPES2_CHECK */
  20. #if defined( HPUX_STDINT_LEAST_FAST_CHECK )
  21. # define UINT_FAST64_MAX __UINT64_MAX__
  22. # define UINT_LEAST64_MAX __UINT64_MAX__
  23. #endif /* HPUX_STDINT_LEAST_FAST_CHECK */