Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
refs/heads/master
/
.
/
src
/
newlib
/
libgloss
/
mt
/
fstat.c
blob: 1d7d2dcf592424c5f02b4bfa01fad24638429a3b [
file
] [
log
] [
blame
] [
edit
]
#include
<_ansi.h>
#include
<sys/types.h>
#include
<sys/stat.h>
#include
"trap.h"
int
fstat
(
int
file
,
struct
stat
*
st
)
{
st
->
st_mode
=
S_IFCHR
;
st
->
st_blksize
=
4096
;
return
0
;
}