Minix1.5/lib/other/gtty.c

#include <lib.h>
#include <sgtty.h>

int gtty(fd, argp)
int fd;
struct sgttyb *argp;
{
  return(ioctl(fd, TIOCGETP, argp));
}