Sign in
chromium
/
native_client
/
nacl-newlib
/
refs/heads/upstream/master
/
.
/
libgloss
/
iq2000
/
fstat.c
blob: c3b2fa0a639dd8eff3450f434c75bb627356a863 [
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
;
}