summaryrefslogtreecommitdiff
path: root/src/unistd/close.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/close.c')
-rw-r--r--src/unistd/close.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/close.c b/src/unistd/close.c
index 97302f67..f52c0ef3 100644
--- a/src/unistd/close.c
+++ b/src/unistd/close.c
@@ -4,7 +4,7 @@
int close(int fd)
{
- int ret = __syscall_close(fd);
+ int ret = syscall(SYS_close, fd);
CANCELPT_BEGIN;
CANCELPT_END;
return ret;