diff options
Diffstat (limited to 'src/unistd/read.c')
| -rw-r--r-- | src/unistd/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/read.c b/src/unistd/read.c index dd82ce9c..c44e406d 100644 --- a/src/unistd/read.c +++ b/src/unistd/read.c @@ -6,7 +6,7 @@ ssize_t read(int fildes, void *buf, size_t nbyte) { - SC(ssize_t, fildes, buf, nbyte); + SYSCALL("read", ssize_t, -1, fildes, buf, nbyte, 0, 0, 0); } /* POSIX(1) |
