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

12 lines
151 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$ */
int _isatty(int d);
int isatty(int d)
{
return _isatty(d);
}