We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02c385e + 49fe732 commit bbd3e20Copy full SHA for bbd3e20
libc-test/build.rs
@@ -523,15 +523,6 @@ fn test_openbsd(target: &str) {
523
"sys/param.h",
524
}
525
526
- cfg.skip_type(move |ty| {
527
- if ty.starts_with("__c_anonymous_") {
528
- return true;
529
- }
530
- match ty {
531
- _ => false,
532
533
- });
534
-
535
cfg.skip_struct(move |ty| {
536
if ty.starts_with("__c_anonymous_") {
537
return true;
src/unix/bsd/netbsdlike/openbsd/mod.rs
@@ -659,7 +659,7 @@ s_no_extra_traits! {
659
pub ifru_metric: ::c_int,
660
pub ifru_vnetid: i64,
661
pub ifru_media: u64,
662
- pub ifru_data: *mut ::c_char,
+ pub ifru_data: ::caddr_t,
663
pub ifru_index: ::c_uint,
664
665
0 commit comments