sun-inttypes.h 441 B

12345678910111213141516
  1. /* inttypes.h for SunOS cuff.link.cs.cmu.edu 5.5.1 Generic_103640-29 sun4u sparc SUNW,Ultra-Enterprise */
  2. #ifndef INTTYPES_H
  3. #define INTTYPES_H
  4. typedef char int8_t;
  5. typedef short int16_t;
  6. typedef int int32_t;
  7. typedef long long int64_t;
  8. typedef unsigned char uint8_t;
  9. typedef unsigned short uint16_t;
  10. typedef unsigned int uint32_t;
  11. typedef unsigned long long uint64_t;
  12. typedef long int intptr_t;
  13. typedef unsigned long int uintptr_t;
  14. #endif