repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl.git]
/
src
/
stat
/
stat.c
blob
23570e7a2460aacaabc7d8b22048a012de8fdac3
1
#include <sys/stat.h>
2
#include <fcntl.h>
3
4
int
stat
(
const char
*
restrict path
,
struct
stat
*
restrict buf
)
5
{
6
return
fstatat
(
AT_FDCWD
,
path
,
buf
,
0
);
7
}