libc/newlib/libc/posix/isatty.c

11 lines
103 B
C

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