aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sys/mount.h')
-rw-r--r--lib/sys/mount.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sys/mount.h b/lib/sys/mount.h
index 6451b22..a5dd505 100644
--- a/lib/sys/mount.h
+++ b/lib/sys/mount.h
@@ -3,7 +3,7 @@
#include "syscalls.h"
-int mount(const char *src, const char *target, const char *type, unsigned long flags, const void *data)
+static int mount(const char *src, const char *target, const char *type, unsigned long flags, const void *data)
{
return syscall(MOUNT, src, target, type, flags, data);
}