Skip to content

Commit

Permalink
Merge pull request #3786 from sthibaul/hurd64
Browse files Browse the repository at this point in the history
hurd: Add missing struct __timeval for 64bit support
  • Loading branch information
tgross35 authored Aug 16, 2024
2 parents 8f20f00 + c8f2b3c commit bc3c8cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/unix/hurd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,11 @@ s! {
pub tv_nsec: __syscall_slong_t,
}

pub struct __timeval {
pub tv_sec: i32,
pub tv_usec: i32,
}

pub struct __locale_data {
pub _address: u8,
}
Expand Down

0 comments on commit bc3c8cb

Please sign in to comment.