os.linux.timeval: use same field names as std.c
Otherwise, the field names in std.posix.timeval vary by target os.
I think this was an accidental change during the work of #25610
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/linux.zig+2-2
| ... | ... | @@ -8429,8 +8429,8 @@ pub const POSIX_FADV = switch (native_arch) { |
| 8429 | 8429 | }; |
| 8430 | 8430 | |
| 8431 | 8431 | pub const timeval = extern struct { |
| 8432 | | tv_sec: isize, |
| 8433 | | tv_usec: i64, |
| 8432 | sec: isize, |
| 8433 | usec: i64, |
| 8434 | 8434 | }; |
| 8435 | 8435 | |
| 8436 | 8436 | pub const timezone = extern struct { |