repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
more stack for boot
[minix.git]
/
include
/
sys
/
statfs.h
blob
30bf979368dfb4ce14aa1b37d57f40037e2bc134
1
/* Data for fstatfs() call. */
2
3
#ifndef _STATFS_H
4
#define _STATFS_H
5
6
#ifndef _TYPES_H
7
#include <minix/types.h>
8
#endif
9
10
struct
statfs
{
11
off_t f_bsize
;
/* file system block size */
12
};
13
14
_PROTOTYPE
(
int
fstatfs
, (
int
fd
,
struct
statfs
*
st
) );
15
16
#endif
/* _STATFS_H */