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

int chown(const char *path, uid_t uid, gid_t gid)
{
	return syscall(SYS_chown, path, uid, gid);
}