Project

General

Profile

Statistics
| Revision:

root / lab4 / .minix-src / include / sys / statfs.h @ 13

History | View | Annotate | Download (245 Bytes)

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
  int f_bsize;                /* file system block size */
11
};
12

    
13
int fstatfs(int fd, struct statfs *st);
14

    
15
#endif /* _STATFS_H */