hpux-stdint.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /* These should be correct for ia64-hp-hpux11.23. */
  2. #define SIG_ATOMIC_TYPE "unsigned int"
  3. #define INT8_TYPE "signed char"
  4. #define INT16_TYPE "short int"
  5. #define INT32_TYPE "int"
  6. #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
  7. #define UINT8_TYPE "unsigned char"
  8. #define UINT16_TYPE "short unsigned int"
  9. #define UINT32_TYPE "unsigned int"
  10. #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
  11. #define INT_LEAST8_TYPE "signed char"
  12. #define INT_LEAST16_TYPE "short int"
  13. #define INT_LEAST32_TYPE "int"
  14. #define INT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
  15. #define UINT_LEAST8_TYPE "unsigned char"
  16. #define UINT_LEAST16_TYPE "short unsigned int"
  17. #define UINT_LEAST32_TYPE "unsigned int"
  18. #define UINT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
  19. #define INT_FAST8_TYPE "int"
  20. #define INT_FAST16_TYPE "int"
  21. #define INT_FAST32_TYPE "int"
  22. #define INT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
  23. #define UINT_FAST8_TYPE "unsigned int"
  24. #define UINT_FAST16_TYPE "unsigned int"
  25. #define UINT_FAST32_TYPE "unsigned int"
  26. #define UINT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
  27. #define INTPTR_TYPE "long int"
  28. #define UINTPTR_TYPE "long unsigned int"