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