diff options
Diffstat (limited to 'arch/powerpc64/bits/stat.h')
-rw-r--r-- | arch/powerpc64/bits/stat.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/powerpc64/bits/stat.h b/arch/powerpc64/bits/stat.h new file mode 100644 index 00000000..8172cff7 --- /dev/null +++ b/arch/powerpc64/bits/stat.h @@ -0,0 +1,17 @@ +struct stat +{ + dev_t st_dev; + ino_t st_ino; + nlink_t st_nlink; + mode_t st_mode; + uid_t st_uid; + gid_t st_gid; + dev_t st_rdev; + off_t st_size; + blksize_t st_blksize; + blkcnt_t st_blocks; + struct timespec st_atim; + struct timespec st_mtim; + struct timespec st_ctim; + unsigned long __unused[3]; +}; |