X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2F__stdio_read.c;h=d9bb3269c41821031be8e5c8e1d95020fbe03218;hp=ee7e12587ee667ce753206517d00c749b122bee2;hb=aa398f56fa398f2202b04e82c67f822f3233786f;hpb=be82e122bf37fdcd1766d1ed220f0300b30ab6a3 diff --git a/src/stdio/__stdio_read.c b/src/stdio/__stdio_read.c index ee7e1258..d9bb3269 100644 --- a/src/stdio/__stdio_read.c +++ b/src/stdio/__stdio_read.c @@ -2,5 +2,5 @@ size_t __stdio_read(FILE *f, unsigned char *buf, size_t len) { - return __syscall_read(f->fd, buf, len); + return syscall(SYS_read, f->fd, buf, len); }