Skip to content

Commit

Permalink
correct arm c_long size
Browse files Browse the repository at this point in the history
  • Loading branch information
semarie committed Dec 13, 2021
1 parent f328dd7 commit 56234f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix/bsd/netbsdlike/openbsd/arm.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub type c_long = i64;
pub type c_ulong = u64;
pub type c_long = i32;
pub type c_ulong = u32;
pub type c_char = u8;

// should be pub(crate), but that requires Rust 1.18.0
Expand Down

0 comments on commit 56234f6

Please sign in to comment.