diff options
Diffstat (limited to 'src/unistd/close.c')
| -rw-r--r-- | src/unistd/close.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/close.c b/src/unistd/close.c index 3744aa86..e3e038cc 100644 --- a/src/unistd/close.c +++ b/src/unistd/close.c @@ -1,11 +1,11 @@ #include "stddef.h" #include "sys/types.h" #include <unistd.h> -#include "nonstd/syscall.h" +#include "../_syscall.h" int close(int fildes) { - SYSCALL("close", int, -1, fildes, 0, 0, 0, 0, 0); + SYSCALL(close, int, -1, fildes, 0, 0, 0, 0, 0); } /* POSIX(1) |
