diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:14:01 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:14:01 -0500 |
| commit | 253a32e2f9ff1cbb8edbe7c79834a678daebeb93 (patch) | |
| tree | 599cf5baf01c6dae33a2f89989b08b7d553f7fd0 /src/sys/stat/struct_stat.c | |
| parent | 88d0b5e7ffbf0554b236dc46225846061b5f4817 (diff) | |
merge POSIX.1-1988/1990
Diffstat (limited to 'src/sys/stat/struct_stat.c')
| -rw-r--r-- | src/sys/stat/struct_stat.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/sys/stat/struct_stat.c b/src/sys/stat/struct_stat.c new file mode 100644 index 00000000..c825e561 --- /dev/null +++ b/src/sys/stat/struct_stat.c @@ -0,0 +1,23 @@ +#include <sys/stat.h> + +struct stat { + dev_t st_dev; + ino_t st_ino; + mode_t st_mode; + nlink_t st_nlink; + uid_t st_uid; + gid_t st_gid; + dev_t st_rdev; + off_t st_size; + #if 0 + struct timespec st_atim; + struct timespec st_mtim; + struct timespec st_ctim; + blksize_t st_blksize; + blkcnt_t st_blocks; + #endif +}; + +/* +POSIX(1) +*/ |
