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

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

gtty(fd, buf)
int fd;
int *buf;
{
	if (syscall(32, fd, 0, buf, 0, 0) < 0)
		return(-1);
	return(0);
}