Retro68/gcc/newlib/libc/posix/isatty.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

11 lines
103 B
C

/* isatty.c */
#include <unistd.h>
#include <reent.h>
int
isatty (int fd)
{
return _isatty (fd);
}