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

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