types_internal.h 867 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef _SYS_TYPES_INTERNAL_H
  2. #define _SYS_TYPES_INTERNAL_H
  3. #include <stddef.h>
  4. typedef long blksize_t;
  5. typedef long dev_t;
  6. typedef unsigned long ino_t;
  7. typedef int gid_t;
  8. typedef int uid_t;
  9. typedef int mode_t;
  10. typedef unsigned long nlink_t;
  11. typedef long long off_t;
  12. typedef int pid_t;
  13. typedef unsigned id_t;
  14. typedef long ssize_t;
  15. typedef long long time_t;
  16. typedef unsigned int useconds_t;
  17. typedef int suseconds_t;
  18. typedef long clock_t;
  19. typedef int clockid_t;
  20. typedef void* timer_t;
  21. typedef unsigned long int blkcnt_t;
  22. typedef unsigned long int fsblkcnt_t;
  23. typedef unsigned long int fsfilcnt_t;
  24. typedef unsigned char u_char, uchar;
  25. typedef unsigned short u_short, ushort;
  26. typedef unsigned int u_int, uint;
  27. typedef unsigned long u_long, ulong;
  28. typedef long long quad_t;
  29. typedef unsigned long long u_quad_t;
  30. typedef char *caddr_t;
  31. #endif /* _SYS_TYPES_INTERNAL_H */