Move c_long and c_ulong for netbsdlike

This commit is contained in:
Jonathan A. Kollasch 2016-09-29 10:57:33 -05:00
parent d75ebdc288
commit c6799c5b96
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,3 @@
pub type c_long = i64;
pub type c_ulong = u64;
pub type time_t = i64;
pub type mode_t = u32;
pub type nlink_t = ::uint32_t;

View File

@ -1,3 +1,5 @@
pub type c_long = i64;
pub type c_ulong = u64;
pub type clock_t = ::c_uint;
pub type suseconds_t = ::c_int;
pub type dev_t = u64;

View File

@ -1,3 +1,5 @@
pub type c_long = i64;
pub type c_ulong = u64;
pub type clock_t = i64;
pub type suseconds_t = i64;
pub type dev_t = i32;