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

11 lines
116 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* isatty.c */
#include <unistd.h>
#include <reent.h>
int
_DEFUN(isatty, (fd), int fd)
{
return _isatty (fd);
}