diff options
author | Marvin Borner | 2020-05-02 15:44:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-02 15:44:11 +0200 |
commit | aa8a8811818331cf511681327e3ba95e456f0d33 (patch) | |
tree | 852c314dae76e756863f94639ff45eff72834d5d /src/userspace/libc/unistd/write.c | |
parent | 2a0e810a473dea57fd1cd53ea424b61269c029ba (diff) |
Added many syscalls to get better POSIX compliance
Diffstat (limited to 'src/userspace/libc/unistd/write.c')
-rw-r--r-- | src/userspace/libc/unistd/write.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/userspace/libc/unistd/write.c b/src/userspace/libc/unistd/write.c new file mode 100644 index 0000000..c3eec3d --- /dev/null +++ b/src/userspace/libc/unistd/write.c @@ -0,0 +1,7 @@ +#include <stdint.h> +#include <syscall.h> + +u32 sys_write(char *path, u32 offset, u32 count, char *buf) +{ + return syscall_write(path, offset, count, buf); +}
\ No newline at end of file |