diff options
Diffstat (limited to 'lib/sys/open.h')
| -rw-r--r-- | lib/sys/open.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sys/open.h b/lib/sys/open.h index 5aeab6d..e01da63 100644 --- a/lib/sys/open.h +++ b/lib/sys/open.h @@ -3,6 +3,8 @@ #include "syscalls.h" + + static int open(const char *filename, int flags, int mode) { return syscall(OPEN, filename, flags, mode); |