Sign in
third-party-mirror
/
mingw-w64
/
d007f27aa6bcd1f7502b050a38fad17ce94e8a31
/
.
/
mingw-w64-crt
/
testcases
/
t_fstat.c
blob: ecbaa1cd0db32907cfce209f168e5679bfa2f09e [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<sys/types.h>
#include
<sys/stat.h>
int
main
(
int
argc
,
char
*
argv
[])
{
struct
stat st
;
if
(
0
==
fstat
(
0
,
&
st
))
printf
(
"mode = %x\n"
,
st
.
st_mode
);
return
0
;
}