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.
2 parents 50a2acf + aa08592 commit 4cdbb5eCopy full SHA for 4cdbb5e
libc-test/build.rs
@@ -4795,7 +4795,9 @@ fn test_linux(target: &str) {
4795
(struct_ == "statvfs" && field == "__f_spare") ||
4796
(struct_ == "statvfs64" && field == "__f_spare") ||
4797
// the `xsk_tx_metadata_union` field is an anonymous union
4798
- (struct_ == "xsk_tx_metadata" && field == "xsk_tx_metadata_union")
+ (struct_ == "xsk_tx_metadata" && field == "xsk_tx_metadata_union") ||
4799
+ // FIXME(musl): After musl 1.2.0, the type becomes `int` instead of `long`.
4800
+ (struct_ == "utmpx" && field == "ut_session")
4801
});
4802
4803
cfg.skip_roundtrip(move |s| match s {
0 commit comments