We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70565e commit 8bd0669Copy full SHA for 8bd0669
libc-test/build.rs
@@ -5700,6 +5700,9 @@ fn test_aix(target: &str) {
5700
("__context64", "fpr") => true,
5701
("__tm_context_t", "fpr") => true,
5702
5703
+ // The _ALL_SOURCE type of 'f_fsid' differs from POSIX's on AIX.
5704
+ ("statvfs", "f_fsid") => true,
5705
+
5706
_ => false,
5707
}
5708
});
src/unix/aix/powerpc64.rs
@@ -29,7 +29,7 @@ s! {
29
pub f_files: crate::fsfilcnt_t,
30
pub f_ffree: crate::fsfilcnt_t,
31
pub f_favail: crate::fsfilcnt_t,
32
- pub f_fsid: crate::fsid_t,
+ pub f_fsid: c_ulong,
33
pub f_basetype: [c_char; 16],
34
pub f_flag: c_ulong,
35
pub f_namemax: c_ulong,
0 commit comments