libc/newlib/libc/posix/isatty.c

11 lines
103 B
C
Raw Normal View History

2000-02-17 20:39:52 +01:00
/* isatty.c */
#include <unistd.h>
#include <reent.h>
2000-02-17 20:39:52 +01:00
int
isatty (int fd)
2000-02-17 20:39:52 +01:00
{
return _isatty (fd);
2000-02-17 20:39:52 +01:00
}