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
/
syscalls
/
sysclose.c
blob
44ec36eb37cda2e84c43db5f752832d3a2c8c1b0
1
/* connector for close */
2
3
#include <reent.h>
4
#include <unistd.h>
5
6
int
7
close
(
int
fd
)
8
{
9
return
_close_r
(
_REENT
,
fd
);
10
}