summaryrefslogtreecommitdiff
path: root/src/unistd/getcwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/getcwd.c')
-rw-r--r--src/unistd/getcwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/getcwd.c b/src/unistd/getcwd.c
index 904e2c7d..7a37a7c2 100644
--- a/src/unistd/getcwd.c
+++ b/src/unistd/getcwd.c
@@ -1,12 +1,12 @@
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/assert.h"
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
char * getcwd(char *buf, size_t size)
{
ASSERT_NONNULL(buf);
- SYSCALL("getcwd", char *, NULL, buf, size, 0, 0, 0, 0);
+ SYSCALL(getcwd, char *, NULL, buf, size, 0, 0, 0, 0);
}
/*
POSIX(1)