Skip to content

Commit

Permalink
Merge pull request #4268 from hax0kartik/main
Browse files Browse the repository at this point in the history
Fix size of time_t in vxworks
  • Loading branch information
tgross35 authored Feb 18, 2025
2 parents 068180c + eec39f5 commit ca7695a
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 ca7695a

Please sign in to comment.