From fc41defe36994132e25af6748d247cc28675163b Mon Sep 17 00:00:00 2001 From: Shino Amakusa Date: Thu, 17 Dec 2015 18:36:50 +0100 Subject: [PATCH] Fixed_write Syscall --- syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }