Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5623,6 +5623,9 @@ fn test_aix(target: &str) {
("__context64", "fpr") => true,
("__tm_context_t", "fpr") => true,

// The _ALL_SOURCE type of 'f_fsid' differs from POSIX's on AIX.
("statvfs", "f_fsid") => true,

_ => false,
}
});
Expand Down
2 changes: 1 addition & 1 deletion src/unix/aix/powerpc64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ s! {
pub f_files: crate::fsfilcnt_t,
pub f_ffree: crate::fsfilcnt_t,
pub f_favail: crate::fsfilcnt_t,
pub f_fsid: crate::fsid_t,
pub f_fsid: c_ulong,
pub f_basetype: [c_char; 16],
pub f_flag: c_ulong,
pub f_namemax: c_ulong,
Expand Down
Loading