inttypes.h 452 B

1234567891011121314151617181920212223
  1. #ifndef _SUSV2_SOURCE
  2. #error "inttypes.h is SUSV2"
  3. #endif
  4. #ifndef _INTTYPES_H_
  5. #define _INTTYPES_H_ 1
  6. typedef int _intptr_t;
  7. typedef unsigned int _uintptr_t;
  8. typedef char int8_t;
  9. typedef short int16_t;
  10. typedef int int32_t;
  11. typedef long long int64_t;
  12. typedef unsigned char uint8_t;
  13. typedef unsigned short uint16_t;
  14. typedef unsigned int uint32_t;
  15. typedef unsigned long long uint64_t;
  16. typedef _intptr_t intptr_t;
  17. typedef _uintptr_t uintptr_t;
  18. #endif