aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix/isatty.c
blob: afd5ec85e09c87ae8bd70cdf8657f2ba5dd48dae (plain)
1
2
3
4
5
6
7
8
9
10
/* isatty.c */

#include <unistd.h>
#include <reent.h>

int
_DEFUN(isatty, (fd), int fd)
{
  return _isatty (fd);
}