summaryrefslogtreecommitdiffstats
path: root/usr/klibc/chown.c
blob: 089cfc593b9a5e07bb3e3838f6f3fc2cf4f89806 (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_chown

int chown(const char *path, uid_t owner, gid_t group)
{
	return fchownat(AT_FDCWD, path, owner, group, 0);
}

#endif  /* __NR_chown  */