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
This commit is contained in:
Brandon Black 2025-10-17 07:42:05 -05:00 committed by Alex Rønne Petersen
parent 798f6b85e3
commit d18f1dde41

View File

@ -8429,8 +8429,8 @@ pub const POSIX_FADV = switch (native_arch) {
};
pub const timeval = extern struct {
tv_sec: isize,
tv_usec: i64,
sec: isize,
usec: i64,
};
pub const timezone = extern struct {