diff options
author | Vladimir Azarov <avm@intermediate-node.net> | 2024-10-01 15:47:05 +0200 |
---|---|---|
committer | Vladimir Azarov <avm@intermediate-node.net> | 2024-10-01 15:47:05 +0200 |
commit | 4abab5ad6c8465a7528ccdd5f49367da05f78bbd (patch) | |
tree | ebf009bf1376a5a223a915bc27cbbd791a1316bc /src/unistd/lchown.c |
Initial version
Diffstat (limited to 'src/unistd/lchown.c')
-rw-r--r-- | src/unistd/lchown.c | 12 |
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 +} |