ack/lang/cem/libcc.ansi/sys/misc/isatty.c

19 lines
250 B
C
Raw Normal View History

/*
* isatty - check if a file descriptor is associated with a terminal
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
#include <stdlib.h>
#if ACKCONF_WANT_TERMIOS
#include <termios.h>
int isatty(int fd)
{
struct termios dummy;
return(tcgetattr(fd, &dummy) == 0);
}
#endif