diff options
Diffstat (limited to 'src/unistd/lchown.c')
-rw-r--r-- | src/unistd/lchown.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/unistd/lchown.c b/src/unistd/lchown.c index de871aeb..ccd5ee02 100644 --- a/src/unistd/lchown.c +++ b/src/unistd/lchown.c @@ -1,7 +1,12 @@ #include <unistd.h> +#include <fcntl.h> #include "syscall.h" int lchown(const char *path, uid_t uid, gid_t gid) { +#ifdef SYS_lchown return syscall(SYS_lchown, path, uid, gid); +#else + return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW); +#endif } |