plan9port/src/libdraw/unix.c
2003-10-11 02:47:43 +00:00

16 lines
179 B
C

#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;
}