plan9port/src/libdraw/unix.c
2004-03-26 01:59:35 +00:00

15 lines
178 B
C

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