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
/
sysfstat.c
blob
c95e9aab19a1a9fb6d69eee384356ef18c89b500
1
/* connector for fstat */
2
3
#include <reent.h>
4
#include <sys/stat.h>
5
#include <unistd.h>
6
7
int
8
fstat
(
int
fd
,
9
struct
stat
*
pstat
)
10
{
11
return
_fstat_r
(
_REENT
,
fd
,
pstat
);
12
}