summaryrefslogtreecommitdiff
path: root/src/sys/stat/struct_stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat/struct_stat.h')
-rw-r--r--src/sys/stat/struct_stat.h23
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)
-*/