blob: fcc9a7269c2d2b06011d3b3916560637b150bac4 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <syscall.h> // for __syscall_3, syscall
#include <unistd.h> // for gid_t, lchown, uid_t
int lchown(const char *path, uid_t owner, gid_t group)
{
return syscall(lchown, path, owner, group);
}
|