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