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