summaryrefslogtreecommitdiff
path: root/src/unistd/chdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/chdir.c')
-rw-r--r--src/unistd/chdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/chdir.c b/src/unistd/chdir.c
index 82dc997a..828487d3 100644
--- a/src/unistd/chdir.c
+++ b/src/unistd/chdir.c
@@ -5,7 +5,7 @@
int chdir(const char *path)
{
- SC(int, path);
+ SYSCALL("chdir", int, -1, path, 0, 0, 0, 0, 0);
}
/*
POSIX(1)