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

isatty.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9862a87f883766e8a24adad1f9e197d79eafb521 (plain)
1
2
3
4
5
6
7
8
9
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int isatty(int file)
{
  return 0;
}