stdint.h 324 B

12345678910111213141516
  1. #ifndef STDINT_H
  2. #define STDINT_H
  3. typedef short int16_t;
  4. typedef unsigned short uint16_t;
  5. typedef int int32_t;
  6. typedef unsigned int uint32_t;
  7. typedef long long int64_t;
  8. typedef unsigned long long uint64_t;
  9. typedef long long ssize_t;
  10. typedef unsigned long size_t;
  11. typedef unsigned char uint8_t;
  12. typedef char int8_t;
  13. #endif