home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / v6 / gtty.c < prev    next >
Encoding:
Text File  |  1979-01-10  |  102 b   |  9 lines

  1. gtty(fd, buf)
  2. int fd;
  3. int *buf;
  4. {
  5.     if (syscall(32, fd, 0, buf, 0, 0) < 0)
  6.         return(-1);
  7.     return(0);
  8. }
  9.