summaryrefslogtreecommitdiff
path: root/minix/include/sys/statfs.h
blob: a80eef121d550b165e41de01756c4cabffbfe7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Data for fstatfs() call. */

#ifndef _STATFS_H
#define _STATFS_H

#include <sys/cdefs.h>
#include <sys/types.h>

struct statfs {
  int f_bsize;		/* file system block size */
};

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

#endif /* _STATFS_H */