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

sys_isatty.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8857f48280d30d0bfa348f6203ad78af3c7e1deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <machine/syscall.h>
#include <sys/stat.h>
#include "internal_syscall.h"

extern int _fstat(int file, struct stat *st);

/* Query whether output stream is a terminal. For consistency with the
   other minimal implementations, which only support output to stdout,
   this minimal implementation is suggested by the newlib docs.  */

int
_isatty(int file)
{
  struct stat s;
  int ret = _fstat (file, &s);
  return ret == -1 ? 0 : !!(s.st_mode & S_IFCHR);
}