fix integer overflow in WIFSTOPPED macro
[musl] / src / stat / statvfs.c
index 66b9512..bfbb5fe 100644 (file)
@@ -1,7 +1,6 @@
 #include <sys/statvfs.h>
 #include <sys/statfs.h>
 #include "syscall.h"
-#include "libc.h"
 
 static int __statfs(const char *path, struct statfs *buf)
 {
@@ -57,8 +56,3 @@ int fstatvfs(int fd, struct statvfs *buf)
        fixup(buf, &kbuf);
        return 0;
 }
-
-LFS64(statvfs);
-LFS64(statfs);
-LFS64(fstatvfs);
-LFS64(fstatfs);