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

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