Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / misc / isatty.c
1 /*
2  * isatty - check if a file descriptor is associated with a terminal
3  */
4 /* $Id: isatty.c,v 1.2 1994/06/24 11:45:30 ceriel Exp $ */
5
6 int _isatty(int d);
7
8 int isatty(int d)
9 {
10         return _isatty(d);
11 }