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
/
sysstat.c
blob
0490df16490ce3a30d644af17ea6adab92de37ae
1
/* connector for stat */
2
3
#include <reent.h>
4
#include <sys/stat.h>
5
#include <unistd.h>
6
7
int
8
stat
(
const char
*
file
,
9
struct
stat
*
pstat
)
10
{
11
return
_stat_r
(
_REENT
,
file
,
pstat
);
12
}