您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

stdint.h 527B

1234567891011121314151617181920212223
  1. #ifndef _BITS_STDINT_H
  2. #define _BITS_STDINT_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. typedef __SIZE_TYPE__ size_t;
  5. typedef signed long ssize_t;
  6. typedef signed long off_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. typedef signed char int8_t;
  12. typedef signed short int16_t;
  13. typedef signed int int32_t;
  14. typedef signed long long int64_t;
  15. typedef unsigned long physaddr_t;
  16. typedef unsigned long intptr_t;
  17. #endif /* _BITS_STDINT_H */