fix freebsd

This commit is contained in:
rsc 2005-07-19 22:59:09 +00:00
parent 48458cb2b1
commit 0613fe4b84

View file

@ -1,7 +1,13 @@
#ifdef PLAN9PORT /* SORRY! */
#include <u.h>
#include <sys/types.h>
#ifdef __linux__ /* REALLY SORRY! */
#define CANBLOCKSIZE 1
#include <sys/vfs.h>
#elif defined(__FreeBSD__)
#define CANBLOCKSIZE 1
#include <sys/param.h>
#include <sys/mount.h>
#endif
#include "stdinc.h"
#include <ctype.h>
@ -137,7 +143,7 @@ initpart(char *name, int mode)
if(hi == 0)
hi = dir->length;
part->size = hi - part->offset;
#ifdef _LIBC_H_
#ifdef CANBLOCKSIZE
{
struct statfs sfs;
if(fstatfs(part->fd, &sfs) >= 0)