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 1960813 commit a70c0e9Copy full SHA for a70c0e9
alpm/src/cb.rs
@@ -10,9 +10,9 @@ extern "C" {
10
fn vasprintf(str: *const *mut c_char, fmt: *const c_char, args: VaList) -> c_int;
11
}
12
13
-#[cfg(not(any(target_arch = "aarch64", target_arch = "arm")))]
+#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
14
pub type VaList = *mut __va_list_tag;
15
-#[cfg(any(target_arch = "aarch64", target_arch = "arm"))]
+#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
16
pub type VaList = va_list;
17
18
type Cb<T> = UnsafeCell<Option<Box<T>>>;
0 commit comments