V7M/src/libc/v6/gtty.c

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

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