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: 8a6740a55b4a1613e2b04cc0464833db6c8ac6c1 (plain)
1
2
3
4
5
6
7
8
9
10
/* isatty.c */

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

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