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 0fb5309 commit d98eb8fCopy full SHA for d98eb8f
libc-test/build.rs
@@ -5623,6 +5623,9 @@ fn test_aix(target: &str) {
5623
("__context64", "fpr") => true,
5624
("__tm_context_t", "fpr") => true,
5625
5626
+ // The _ALL_SOURCE type of 'f_fsid' differs from POSIX's on AIX.
5627
+ ("statvfs", "f_fsid") => true,
5628
+
5629
_ => false,
5630
}
5631
});
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