V7/usr/src/libc/v6/chown.c

Find at most related files.
including files from this version of Unix.

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