Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / sysisatty.c
blob697c54bc49059aee420a8efdd2667684f8d77e0c
1 /* connector for isatty */
3 #include <reent.h>
4 #include <unistd.h>
6 int
7 isatty (int fd)
9 #ifdef REENTRANT_SYSCALLS_PROVIDED
10 return _isatty_r (_REENT, fd);
11 #else
12 return _isatty (fd);
13 #endif