repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
posix
/
isatty.c
blob
8a6740a55b4a1613e2b04cc0464833db6c8ac6c1
1
/* isatty.c */
2
3
#include <unistd.h>
4
#include <reent.h>
5
6
int
7
isatty
(
int
fd
)
8
{
9
return
_isatty
(
fd
);
10
}