Skip to content

Commit

Permalink
Fix size of time_t in vxworks
Browse files Browse the repository at this point in the history
(backport <#4268>)
(cherry picked from commit eec39f5)
  • Loading branch information
hax0kartik authored and tgross35 committed Feb 22, 2025
1 parent b668252 commit 116b82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vxworks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub type ino_t = c_ulong;

pub type rlim_t = c_ulong;
pub type suseconds_t = c_long;
pub type time_t = c_long;
pub type time_t = c_longlong;

pub type errno_t = c_int;

Expand Down

0 comments on commit 116b82e

Please sign in to comment.