V7M/src/libc/v6/chown.c

Compare this file to the similar file:
Show the results in this format:

chown(name, owner, group)
char *name;
int owner, group;
{
	return(syscall(16, 0, 0, name, (group<<8)|(owner&0377), 0));
}