summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/chown.c
blob: fa7e0e7be58dea5223bfc51b30f3caa76606e4e8 (plain)
1
2
3
4
5
6
7
#include <unistd.h>
#include <syscall.h>

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