Sign in
plan9port
/
plan9
/
8d7133308db580d2356d5d1dd30f0b9a1f0a7417
/
.
/
src
/
libdraw
/
unix.c
blob: 76bc75d0d618b00e31c3154508f3fd94d9d73de9 [
file
]
#include
<u.h>
#include
<sys/stat.h>
#include
<libc.h>
#include
<draw.h>
vlong
_drawflength
(
int
fd
)
{
struct
stat s
;
if
(
fstat
(
fd
,
&
s
)
<
0
)
return
-
1
;
return
s
.
st_size
;
}