Skip to content

Commit dc2e747

Browse files
committed
haiku: time_t is now 64-bit on x86_64.
1 parent e102a72 commit dc2e747

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

src/unix/haiku/b32.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pub type c_long = i32;
22
pub type c_ulong = u32;
3+
pub type time_t = i32;

src/unix/haiku/b64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pub type c_ulong = u64;
22
pub type c_long = i64;
3+
pub type time_t = i64;

src/unix/haiku/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ pub type speed_t = ::c_uint;
99
pub type c_char = i8;
1010
pub type clock_t = i32;
1111
pub type clockid_t = i32;
12-
pub type time_t = i32;
1312
pub type suseconds_t = i32;
1413
pub type wchar_t = i32;
1514
pub type off_t = i64;

0 commit comments

Comments
 (0)