summaryrefslogtreecommitdiff
path: root/src/unistd/fchownat.c
blob: 62457a3ec0eb794d63043f8dc8be0e32415347b7 (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag)
{
	return syscall(SYS_fchownat, fd, path, uid, gid, flag);
}