summaryrefslogtreecommitdiff
path: root/src/stat/statvfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/statvfs.c')
-rw-r--r--src/stat/statvfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c
index 30d58797..66b95123 100644
--- a/src/stat/statvfs.c
+++ b/src/stat/statvfs.c
@@ -3,7 +3,7 @@
#include "syscall.h"
#include "libc.h"
-int __statfs(const char *path, struct statfs *buf)
+static int __statfs(const char *path, struct statfs *buf)
{
*buf = (struct statfs){0};
#ifdef SYS_statfs64
@@ -13,7 +13,7 @@ int __statfs(const char *path, struct statfs *buf)
#endif
}
-int __fstatfs(int fd, struct statfs *buf)
+static int __fstatfs(int fd, struct statfs *buf)
{
*buf = (struct statfs){0};
#ifdef SYS_fstatfs64