diff --git a/syscalls.c b/syscalls.c index e696539..cd6ce68 100644 --- a/syscalls.c +++ b/syscalls.c @@ -44,5 +44,5 @@ int _read(void) { } int _write(int fd, const void *buf, int count) { sendString((char*)buf, count); - return 0; + return count; }