newlib-cygwin/newlib/libc/posix/isatty.c

11 lines
116 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/* isatty.c */
#include <unistd.h>
#include <reent.h>
2000-02-18 03:39:52 +08:00
int
_DEFUN(isatty, (fd), int fd)
2000-02-18 03:39:52 +08:00
{
return _isatty (fd);
2000-02-18 03:39:52 +08:00
}