diff options
Diffstat (limited to 'src/unistd/close.c')
-rw-r--r-- | src/unistd/close.c | 2 |
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; |