Sign in
◑
Theme
plan9port
/
plan9
/
f9355efb2e3c9f7c9476f3d9e22dd0ff3e87db65
/
.
/
src
/
libdraw
/
unix.c
blob: 491bc66c866c2ab163d1d8995f0f68820c48872a [
file
]
#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
;
}