Skip to content

Commit

Permalink
time_t is 64 bits on Emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Jan 30, 2024
1 parent 8a846aa commit d258eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/linux_like/emscripten/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub type loff_t = i64;
pub type pthread_key_t = ::c_uint;

pub type clock_t = c_long;
pub type time_t = c_long;
pub type time_t = i64;
pub type suseconds_t = c_long;
pub type ino_t = u64;
pub type off_t = i64;
Expand Down

0 comments on commit d258eaa

Please sign in to comment.