diff options
Diffstat (limited to 'src/unistd/write.c')
-rw-r--r-- | src/unistd/write.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/write.c b/src/unistd/write.c new file mode 100644 index 0000000..8fd5bc5 --- /dev/null +++ b/src/unistd/write.c @@ -0,0 +1,7 @@ +#include <unistd.h> +#include "syscall.h" + +ssize_t write(int fd, const void *buf, size_t count) +{ + return syscall_cp(SYS_write, fd, buf, count); +} |