Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
stat
/
stat.c
blob: 23570e7a2460aacaabc7d8b22048a012de8fdac3 [
file
] [
log
] [
blame
]
#include
<sys/stat.h>
#include
<fcntl.h>
int
stat
(
const
char
*
restrict path
,
struct
stat
*
restrict buf
)
{
return
fstatat
(
AT_FDCWD
,
path
,
buf
,
0
);
}