home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / 2bsd.tar.gz / 2bsd.tar / upgrade / libretro / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-04-19  |  116 b   |  11 lines

  1. #include <sgtty.h>
  2.  
  3. /* is unit c a tty? */
  4. isatty(c)
  5.     int c;
  6. {
  7.     struct sgttyb tty;
  8.  
  9.     return (gtty(c, &tty) == 0);
  10. }
  11.