2003-09-30 17:47:42 +00:00
|
|
|
#include <u.h>
|
2004-03-26 01:59:35 +00:00
|
|
|
#include <sys/stat.h>
|
2003-09-30 17:47:42 +00:00
|
|
|
#include <libc.h>
|
|
|
|
|
#include <draw.h>
|
|
|
|
|
|
|
|
|
|
vlong
|
2003-10-11 02:47:43 +00:00
|
|
|
_drawflength(int fd)
|
2003-09-30 17:47:42 +00:00
|
|
|
{
|
|
|
|
|
struct stat s;
|
|
|
|
|
|
|
|
|
|
if(fstat(fd, &s) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
return s.st_size;
|
|
|
|
|
}
|
|
|
|
|
|