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

isatty.c « iq2000 « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0930a531e202a1b69226aa9094f0d7a430d19dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"


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