Skip to content

Commit ca7695a

Browse files
authored
Merge pull request #4268 from hax0kartik/main
Fix size of time_t in vxworks
2 parents 068180c + eec39f5 commit ca7695a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vxworks/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub type ino_t = c_ulong;
3434

3535
pub type rlim_t = c_ulong;
3636
pub type suseconds_t = c_long;
37-
pub type time_t = c_long;
37+
pub type time_t = c_longlong;
3838

3939
pub type errno_t = c_int;
4040

0 commit comments

Comments
 (0)