summaryrefslogtreecommitdiff
path: root/src/sys/stat/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat/chmod.c')
-rw-r--r--src/sys/stat/chmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/stat/chmod.c b/src/sys/stat/chmod.c
index 6f77e75e..975cf01a 100644
--- a/src/sys/stat/chmod.c
+++ b/src/sys/stat/chmod.c
@@ -1,10 +1,10 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "nonstd/syscall.h"
+#include "../../_syscall.h"
int chmod(const char *path, mode_t mode)
{
- SYSCALL("chmod", int, -1, path, mode, 0, 0, 0, 0);
+ SYSCALL(chmod, int, -1, path, mode, 0, 0, 0, 0);
}
/*
POSIX(1)