aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_write.c')
-rw-r--r--src/kernel/syscall/actions/sys_write.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/kernel/syscall/actions/sys_write.c b/src/kernel/syscall/actions/sys_write.c
index 19c35fa..882ff19 100644
--- a/src/kernel/syscall/actions/sys_write.c
+++ b/src/kernel/syscall/actions/sys_write.c
@@ -1,12 +1,9 @@
#include <stdint-gcc.h>
#include <mlibc/stdio.h>
-#include <kernel/io/io.h>
-uint32_t sys_write(unsigned int buf, unsigned int count)
+uint32_t sys_write(unsigned int fd, unsigned int buf, unsigned int count)
{
- serial_write("\n");
- serial_write_dec(count);
- serial_write("WRITE: \n");
- serial_write((const char *) buf);
+ for (uint32_t i = 0; i < count; i++)
+ writec(*((char *) buf++));
return count;
} \ No newline at end of file