haiku: time_t is now 64-bit on x86_64.

This commit is contained in:
Jessica Hamilton 2017-09-02 08:56:52 +12:00
parent e102a72651
commit dc2e747b2a
3 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
pub type c_long = i32;
pub type c_ulong = u32;
pub type time_t = i32;

View File

@ -1,2 +1,3 @@
pub type c_ulong = u64;
pub type c_long = i64;
pub type time_t = i64;

View File

@ -9,7 +9,6 @@ pub type speed_t = ::c_uint;
pub type c_char = i8;
pub type clock_t = i32;
pub type clockid_t = i32;
pub type time_t = i32;
pub type suseconds_t = i32;
pub type wchar_t = i32;
pub type off_t = i64;