@@ -5,8 +5,6 @@ pub type wchar_t = ::c_int;
5
5
6
6
pub type nlink_t = :: c_uint ;
7
7
pub type blksize_t = :: c_int ;
8
- pub type fsblkcnt64_t = :: c_ulong ;
9
- pub type fsfilcnt64_t = :: c_ulong ;
10
8
pub type __u64 = :: c_ulonglong ;
11
9
pub type __s64 = :: c_longlong ;
12
10
59
57
__unused: [ :: c_int; 2 ] ,
60
58
}
61
59
62
- pub struct statfs {
63
- pub f_type: :: c_long,
64
- pub f_bsize: :: c_long,
65
- pub f_blocks: :: fsblkcnt_t,
66
- pub f_bfree: :: fsblkcnt_t,
67
- pub f_bavail: :: fsblkcnt_t,
68
- pub f_files: :: fsfilcnt_t,
69
- pub f_ffree: :: fsfilcnt_t,
70
- pub f_fsid: :: fsid_t,
71
- pub f_namelen: :: c_long,
72
- pub f_frsize: :: c_long,
73
- pub f_flags: :: c_long,
74
- pub f_spare: [ :: c_long; 4 ] ,
75
- }
76
-
77
- pub struct statfs64 {
78
- pub f_type: :: c_long,
79
- pub f_bsize: :: c_long,
80
- pub f_blocks: :: fsblkcnt64_t,
81
- pub f_bfree: :: fsblkcnt64_t,
82
- pub f_bavail: :: fsblkcnt64_t,
83
- pub f_files: :: fsfilcnt64_t,
84
- pub f_ffree: :: fsfilcnt64_t,
85
- pub f_fsid: :: fsid_t,
86
- pub f_namelen: :: c_long,
87
- pub f_frsize: :: c_long,
88
- pub f_flags: :: c_long,
89
- pub f_spare: [ :: c_long; 4 ] ,
90
- }
91
-
92
- pub struct statvfs {
93
- pub f_bsize: :: c_ulong,
94
- pub f_frsize: :: c_ulong,
95
- pub f_blocks: :: fsblkcnt_t,
96
- pub f_bfree: :: fsblkcnt_t,
97
- pub f_bavail: :: fsblkcnt_t,
98
- pub f_files: :: fsfilcnt_t,
99
- pub f_ffree: :: fsfilcnt_t,
100
- pub f_favail: :: fsfilcnt_t,
101
- pub f_fsid: :: c_ulong,
102
- pub f_flag: :: c_ulong,
103
- pub f_namemax: :: c_ulong,
104
- pub __f_spare: [ :: c_int; 6 ] ,
105
- }
106
-
107
- pub struct statvfs64 {
108
- pub f_bsize: :: c_ulong,
109
- pub f_frsize: :: c_ulong,
110
- pub f_blocks: :: fsblkcnt64_t,
111
- pub f_bfree: :: fsblkcnt64_t,
112
- pub f_bavail: :: fsblkcnt64_t,
113
- pub f_files: :: fsfilcnt64_t,
114
- pub f_ffree: :: fsfilcnt64_t,
115
- pub f_favail: :: fsfilcnt64_t,
116
- pub f_fsid: :: c_ulong,
117
- pub f_flag: :: c_ulong,
118
- pub f_namemax: :: c_ulong,
119
- pub __f_spare: [ :: c_int; 6 ] ,
120
- }
121
-
122
60
pub struct siginfo_t {
123
61
pub si_signo: :: c_int,
124
62
pub si_errno: :: c_int,
0 commit comments