alltypes.h 275 B

12345678910111213141516171819202122
  1. #ifndef __GBLIBC_BITS_ALLTYPES_H_
  2. #define __GBLIBC_BITS_ALLTYPES_H_
  3. #include <time.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. typedef size_t blksize_t;
  8. typedef size_t blkcnt_t;
  9. struct timespec {
  10. time_t tv_sec;
  11. long tv_nsec;
  12. };
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif