Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
aa398f56fa398f2202b04e82c67f822f3233786f
/
.
/
src
/
stat
/
fstat.c
blob: 10228f75240c9b38dfadc101125cc03f07780697 [
file
] [
log
] [
blame
]
#include
<sys/stat.h>
#include
"syscall.h"
#include
"libc.h"
int
fstat
(
int
fd
,
struct
stat
*
buf
)
{
return
syscall
(
SYS_fstat
,
fd
,
buf
);
}
LFS64
(
fstat
);