stat_64.h 820 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef _SPARC64_STAT_H
  2. #define _SPARC64_STAT_H
  3. #include <linux/types.h>
  4. struct stat {
  5. unsigned st_dev;
  6. ino_t st_ino;
  7. mode_t st_mode;
  8. short st_nlink;
  9. uid_t st_uid;
  10. gid_t st_gid;
  11. unsigned st_rdev;
  12. off_t st_size;
  13. time_t st_atime;
  14. time_t st_mtime;
  15. time_t st_ctime;
  16. off_t st_blksize;
  17. off_t st_blocks;
  18. unsigned long __unused4[2];
  19. };
  20. struct stat64 {
  21. unsigned long st_dev;
  22. unsigned long st_ino;
  23. unsigned long st_nlink;
  24. unsigned int st_mode;
  25. unsigned int st_uid;
  26. unsigned int st_gid;
  27. unsigned int __pad0;
  28. unsigned long st_rdev;
  29. long st_size;
  30. long st_blksize;
  31. long st_blocks;
  32. unsigned long st_atime;
  33. unsigned long st_atime_nsec;
  34. unsigned long st_mtime;
  35. unsigned long st_mtime_nsec;
  36. unsigned long st_ctime;
  37. unsigned long st_ctime_nsec;
  38. long __unused[3];
  39. };
  40. #endif