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

int fchown(int fd, uid_t uid, gid_t gid)
{
	return syscall3(__NR_fchown32, fd, uid, gid);
}