diff options
Diffstat (limited to 'src/stdio/__stdio_write.c')
-rw-r--r-- | src/stdio/__stdio_write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/__stdio_write.c b/src/stdio/__stdio_write.c index 78545626..d4264eff 100644 --- a/src/stdio/__stdio_write.c +++ b/src/stdio/__stdio_write.c @@ -4,6 +4,6 @@ size_t __stdio_write(FILE *f, const unsigned char *buf, size_t len) { const unsigned char *stop = buf+len; ssize_t cnt = 1; - for (; buf<stop && (cnt=__syscall_write(f->fd, buf, len))>0; buf+=cnt); + for (; buf<stop && (cnt=syscall(SYS_write, f->fd, buf, len))>0; buf+=cnt); return len-(stop-buf); } |