diff options
Diffstat (limited to 'lib/sys/creat.h')
| -rw-r--r-- | lib/sys/creat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sys/creat.h b/lib/sys/creat.h index 9c6e492..b8c4650 100644 --- a/lib/sys/creat.h +++ b/lib/sys/creat.h @@ -3,7 +3,7 @@ #include "syscalls.h" -int creat(const char *pathname, unsigned int mode) +static int creat(const char *pathname, unsigned int mode) { return syscall(CREAT, pathname, mode); } |