blob: 9a9e1e1ee108f7d6245e5050e613f71536d3290e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <fcntl.h>
#include <unistd.h>
#include <sys/syscall.h>
#ifndef __NR_lchown
int lchown(const char *path, uid_t owner, gid_t group)
{
return fchownat(AT_FDCWD, path, owner, group, AT_SYMLINK_NOFOLLOW);
}
#endif /* __NR_lchown */
|