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 6f591df + 9df0cdf commit 024d151Copy full SHA for 024d151
libc-test/build.rs
@@ -1439,6 +1439,11 @@ fn test_android(target: &str) {
1439
1440
}
1441
1442
+ // Include Android-specific headers:
1443
+ headers! { cfg:
1444
+ "android/set_abort_message.h"
1445
+ }
1446
+
1447
cfg.type_name(move |ty, is_struct, is_union| {
1448
match ty {
1449
// Just pass all these through, no need for a "struct" prefix
src/unix/linux_like/android/mod.rs
@@ -2821,6 +2821,8 @@ extern "C" {
2821
) -> ::size_t;
2822
2823
pub fn regfree(preg: *mut ::regex_t);
2824
2825
+ pub fn android_set_abort_message(msg: *const ::c_char);
2826
2827
2828
cfg_if! {
0 commit comments