Fixed_write Syscall

This commit is contained in:
Mario Hüttel 2015-12-17 18:36:50 +01:00
parent 246a94305e
commit fc41defe36

View File

@ -44,5 +44,5 @@ int _read(void) {
} }
int _write(int fd, const void *buf, int count) { int _write(int fd, const void *buf, int count) {
sendString((char*)buf, count); sendString((char*)buf, count);
return 0; return count;
} }