Sign in
plan9port
/
plan9
/
76193d7cb0457807b2f0b95f909ab5de19480cd7
/
.
/
src
/
libdraw
/
unix.c
blob: 2203b0876e47137bc3ca1d18e7ce7e879f7e09db [
file
] [
log
] [
blame
]
#include
<sys/stat.h>
#include
<u.h>
#include
<libc.h>
#include
<draw.h>
vlong
flength
(
int
fd
)
{
struct
stat s
;
if
(
fstat
(
fd
,
&
s
)
<
0
)
return
-
1
;
return
s
.
st_size
;
}