libc/newlib/libc/posix/isatty.c

11 lines
116 B
C

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