aboutsummaryrefslogtreecommitdiff
path: root/system/include/sys/statvfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'system/include/sys/statvfs.h')
-rw-r--r--system/include/sys/statvfs.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/system/include/sys/statvfs.h b/system/include/sys/statvfs.h
deleted file mode 100644
index 8e17f817..00000000
--- a/system/include/sys/statvfs.h
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#ifndef _SYS_STATVFS_H
-#define _SYS_STATVFS_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct statvfs {
- int f_bsize;
- int f_frsize;
- int f_blocks;
- int f_bfree;
- int f_bavail;
- int f_files;
- int f_ffree;
- int f_favail;
- int f_fsid;
- int f_flag;
- int f_namemax;
-};
-
-int statvfs(const char *path, struct statvfs *s);
-
-#define ST_RDONLY 0
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-