From 1221e834f49adb91eb0b7443a57274f2611459c2 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 23 Feb 2019 15:22:33 -0500 Subject: compile in current environment --- src/unistd/chown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/chown.c') diff --git a/src/unistd/chown.c b/src/unistd/chown.c index 55b32b07..08c52364 100644 --- a/src/unistd/chown.c +++ b/src/unistd/chown.c @@ -5,7 +5,7 @@ int chown(const char *path, uid_t owner, gid_t group) { - SC(int, path, owner, group); + SYSCALL("chown", int, -1, path, owner, group, 0, 0, 0); } /* POSIX(1) -- cgit v1.2.1