Skip to content

Commit

Permalink
Fix compilation on Linux arm 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrafimenkov committed Nov 10, 2023
1 parent 56a4442 commit fe31db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libc_.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#![allow(non_camel_case_types)]

#[cfg(target_arch = "aarch64")]
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
pub type c_char = u8;

#[cfg(target_arch = "x86_64")]
Expand Down

0 comments on commit fe31db9

Please sign in to comment.