inttypes.h 374 B

123456789101112131415161718
  1. #ifndef _STDINT_H
  2. #include <stdint.h>
  3. #if 0
  4. #ifndef __INTTYPES_H__
  5. #define __INTTYPES_H__
  6. typedef unsigned char uint8_t;
  7. typedef unsigned short uint16_t;
  8. typedef unsigned long uint32_t;
  9. typedef signed char int8_t;
  10. typedef signed short int16_t;
  11. typedef signed long int32_t;
  12. typedef long intptr_t;
  13. typedef unsigned long uintptr_t;
  14. #endif
  15. #endif
  16. #endif /* __INTTYPES_H__ */