mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
fix freebsd
This commit is contained in:
parent
48458cb2b1
commit
0613fe4b84
1 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue