summaryrefslogtreecommitdiff
path: root/src/unistd/chown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/chown.c')
-rw-r--r--src/unistd/chown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/chown.c b/src/unistd/chown.c
index 08c52364..9f931765 100644
--- a/src/unistd/chown.c
+++ b/src/unistd/chown.c
@@ -1,11 +1,11 @@
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
int chown(const char *path, uid_t owner, gid_t group)
{
- SYSCALL("chown", int, -1, path, owner, group, 0, 0, 0);
+ SYSCALL(chown, int, -1, path, owner, group, 0, 0, 0);
}
/*
POSIX(1)