4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 19:40:07 +08:00

11 lines
116 B
C
Raw Normal View History

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