Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isatty.c « posix « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}