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 508e174 commit 49fe732Copy full SHA for 49fe732
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
@@ -625,7 +625,7 @@ s_no_extra_traits! {
625
pub ifru_metric: ::c_int,
626
pub ifru_vnetid: i64,
627
pub ifru_media: u64,
628
- pub ifru_data: *mut ::c_char,
+ pub ifru_data: ::caddr_t,
629
pub ifru_index: ::c_uint,
630
631
0 commit comments