1 /* $Id: statfs.h,v 1.3 1995/11/25 02:32:54 davem Exp $ */
2 #ifndef _SPARC_STATFS_H
3 #define _SPARC_STATFS_H
4
5 typedef struct {
6 long val[2];
7 } fsid_t;
8
9 struct statfs {
10 long f_type;
11 long f_bsize;
12 long f_blocks;
13 long f_bfree;
14 long f_bavail;
15 long f_files;
16 long f_ffree;
17 fsid_t f_fsid;
18 long f_namelen; /* SunOS ignores this field. */
19 long f_spare[6];
20 };
21
22 #endif