We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c86544f + fab6a64 commit 8ebcf49Copy full SHA for 8ebcf49
1 file changed
libc-test/build.rs
@@ -647,6 +647,11 @@ fn test_openbsd(target: &str) {
647
}
648
});
649
650
+ cfg.skip_type(move |ty| {
651
+ // `c_char_def` is always public but not always reexported.
652
+ ty == "c_char_def"
653
+ });
654
+
655
cfg.type_name(move |ty, is_struct, is_union| {
656
match ty {
657
// Just pass all these through, no need for a "struct" prefix
0 commit comments