diff options
Diffstat (limited to 'src/sys/statvfs/statvfs.c')
| -rw-r--r-- | src/sys/statvfs/statvfs.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sys/statvfs/statvfs.c b/src/sys/statvfs/statvfs.c new file mode 100644 index 00000000..1a19962d --- /dev/null +++ b/src/sys/statvfs/statvfs.c @@ -0,0 +1,11 @@ +#include <sys/statvfs.h> + +int statvfs(const char * restrict path, struct statvfs * restrict buf) +{ + return 0; +} + +/* +XOPEN(400) +POSIX(200809) +*/ |
