Sign in
plan9port
/
plan9
/
ac244f8d287a6119155ea672c8fd13c487c5e4c7
/
.
/
src
/
libdraw
/
unix.c
blob: 491bc66c866c2ab163d1d8995f0f68820c48872a [
file
] [
log
] [
blame
]
#include
<sys/stat.h>
#include
<u.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
;
}