diff options
Diffstat (limited to 'src/user/lib/fcntl.c')
-rw-r--r-- | src/user/lib/fcntl.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/user/lib/fcntl.c b/src/user/lib/fcntl.c new file mode 100644 index 0000000..fcec545 --- /dev/null +++ b/src/user/lib/fcntl.c @@ -0,0 +1,12 @@ +#include <bits/panic.h> +#include <fcntl.h> + +int open(const char *path, int flags, ...) { + (void)path; (void)flags; + __libc_panic("unimplemented"); +} + +int fcntl(int fd, int cmd, ...) { + (void)fd; (void)cmd; + __libc_panic("unimplemented"); +} |