systypeshh.inc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. { ---------------------------------------------------------------------
  2. 'h2pas -S -c -D -l libc -i' from sys/types.h
  3. ---------------------------------------------------------------------}
  4. Type
  5. u_char = __u_char;
  6. u_short = __u_short;
  7. u_int = __u_int;
  8. u_long = __u_long;
  9. quad_t = __quad_t;
  10. u_quad_t = __u_quad_t;
  11. fsid_t = __fsid_t;
  12. loff_t = __loff_t;
  13. ino_t = __ino_t;
  14. ino_t = __ino64_t;
  15. ino64_t = __ino64_t;
  16. dev_t = __dev_t;
  17. gid_t = __gid_t;
  18. mode_t = __mode_t;
  19. nlink_t = __nlink_t;
  20. uid_t = __uid_t;
  21. off_t = __off_t;
  22. off64_t = __off64_t;
  23. pid_t = __pid_t;
  24. id_t = __id_t;
  25. ssize_t = __ssize_t;
  26. daddr_t = __daddr_t;
  27. caddr_t = __caddr_t;
  28. key_t = __key_t;
  29. useconds_t = __useconds_t;
  30. suseconds_t = __suseconds_t;
  31. ulong = dword;
  32. ushort = word;
  33. uint = dword;
  34. int8_t = char;
  35. int16_t = smallint;
  36. int32_t = longint;
  37. u_int8_t = byte;
  38. u_int16_t = word;
  39. u_int32_t = dword;
  40. register_t = longint;
  41. blksize_t = __blksize_t;
  42. blkcnt_t = __blkcnt_t;
  43. fsblkcnt_t = __fsblkcnt_t;
  44. fsfilcnt_t = __fsfilcnt_t;
  45. blkcnt_t = __blkcnt64_t;
  46. fsblkcnt_t = __fsblkcnt64_t;
  47. fsfilcnt_t = __fsfilcnt64_t;
  48. blkcnt64_t = __blkcnt64_t;
  49. fsblkcnt64_t = __fsblkcnt64_t;
  50. fsfilcnt64_t = __fsfilcnt64_t;