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

int fchown(int fildes, uid_t owner, gid_t group)
{
	return syscall(fchown, fildes, owner, group);
}