stdint.h 326 B

123456789101112131415
  1. #ifndef __LIB_STDINT_H
  2. #define __LIB_STDINT_H
  3. typedef signed char int8_t;
  4. typedef signed short int16_t;
  5. typedef signed int int32_t;
  6. typedef signed long long int64_t;
  7. typedef unsigned char uint8_t;
  8. typedef unsigned short uint16_t;
  9. typedef unsigned int uint32_t;
  10. typedef unsigned long long uint64_t;
  11. #endif // __LIB_STDINT_H