diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-01-31 16:46:49 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-01-31 16:46:49 -0500 |
commit | cb7967b40d4a9b6e17003b8518c7cd49d29108ab (patch) | |
tree | 5b4c7cbe991ae5ddee64afc152150dc1b739be8d /src/sys/stat/struct_stat.h | |
parent | 2bc46bd54cc8cdcd7647461f2d76384266f2a0e4 (diff) |
purge last of posix-specific headers
Diffstat (limited to 'src/sys/stat/struct_stat.h')
-rw-r--r-- | src/sys/stat/struct_stat.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/sys/stat/struct_stat.h b/src/sys/stat/struct_stat.h deleted file mode 100644 index c825e561..00000000 --- a/src/sys/stat/struct_stat.h +++ /dev/null @@ -1,23 +0,0 @@ -#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) -*/ |