Retro68/gcc/newlib/libc/posix/isatty.c

11 lines
103 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* isatty.c */
#include <unistd.h>
#include <reent.h>
int
2018-12-28 15:30:48 +00:00
isatty (int fd)
2017-04-11 21:13:36 +00:00
{
return _isatty (fd);
}