From 3fe595de83e398dbc3cdbe303cacaf8485c9ae08 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 11 Sep 2018 14:02:58 -0400 Subject: remove or make static various unused __-prefixed symbols --- src/stat/statvfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stat/statvfs.c') 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 -- cgit v1.2.1