mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
16 lines
215 B
C
16 lines
215 B
C
|
/* connector for isatty */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
_DEFUN (isatty, (fd),
|
||
|
int fd)
|
||
|
{
|
||
|
#ifdef REENTRANT_SYSCALLS_PROVIDED
|
||
|
return _isatty_r (_REENT, fd);
|
||
|
#else
|
||
|
return _isatty (fd);
|
||
|
#endif
|
||
|
}
|