diff options
Diffstat (limited to 'src/unistd/write.c')
-rw-r--r-- | src/unistd/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/write.c b/src/unistd/write.c index 426cfc5b..a8284b32 100644 --- a/src/unistd/write.c +++ b/src/unistd/write.c @@ -6,7 +6,7 @@ ssize_t write(int fd, const void *buf, size_t count) { int r; CANCELPT_BEGIN; - r = __syscall_write(fd, buf, count); + r = syscall(SYS_write, fd, buf, count); CANCELPT_END; return r; } |