char is unsigned on FreeBSD aarch64 and powerpc64
This commit is contained in:
parent
6c1e2dec8f
commit
69c9c541f7
@ -1,3 +1,4 @@
|
||||
pub type c_char = i8;
|
||||
pub type clock_t = u64;
|
||||
pub type ino_t = u64;
|
||||
pub type lwpid_t = i32;
|
||||
|
@ -1,5 +1,6 @@
|
||||
use dox::mem;
|
||||
|
||||
pub type c_char = u8;
|
||||
pub type c_long = i64;
|
||||
pub type c_ulong = u64;
|
||||
pub type time_t = i64;
|
||||
|
@ -1,3 +1,4 @@
|
||||
pub type c_char = u8;
|
||||
pub type c_long = i64;
|
||||
pub type c_ulong = u64;
|
||||
pub type time_t = i64;
|
||||
|
@ -1,5 +1,6 @@
|
||||
use dox::mem;
|
||||
|
||||
pub type c_char = i8;
|
||||
pub type c_long = i32;
|
||||
pub type c_ulong = u32;
|
||||
pub type time_t = i32;
|
||||
|
@ -1,5 +1,6 @@
|
||||
use dox::mem;
|
||||
|
||||
pub type c_char = i8;
|
||||
pub type c_long = i64;
|
||||
pub type c_ulong = u64;
|
||||
pub type time_t = i64;
|
||||
|
@ -1,4 +1,3 @@
|
||||
pub type c_char = i8;
|
||||
pub type dev_t = u32;
|
||||
pub type mode_t = u16;
|
||||
pub type pthread_attr_t = *mut ::c_void;
|
||||
|
Loading…
Reference in New Issue
Block a user