summaryrefslogtreecommitdiff
path: root/src/unistd/lchown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/lchown.c')
-rw-r--r--src/unistd/lchown.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/lchown.c b/src/unistd/lchown.c
new file mode 100644
index 0000000..ccd5ee0
--- /dev/null
+++ b/src/unistd/lchown.c
@@ -0,0 +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
+}