ack/lang/cem/libcc/gen/isatty.c
1987-01-27 15:57:55 +00:00

10 lines
102 B
C

#include <sgtty.h>
isatty(f)
{
struct sgttyb ttyb;
if (gtty(f, &ttyb) < 0) return 0;
return 1;
}