The implementations of `_time32` & `_time64` internally used `_ftime64`, which also needs to query timezone information via `GetTimeZoneInformation()` which can be fairly expensive i.e. somewhere down the line is a `localtime()` call that practically always triggers at least a `stat` syscall, which is a lot of overhead for merely querying the time. This is workaround mentioned in MR !10892, for further details of the underlying issue see the description there. This MR should be fully transparent, since the return value of the `time` function(s) does not depend on the current timezone information at all. Even with MR !10892 applied, this change may still result in a speedup, just less severe since only function calls but no (further) syscall(s) are avoided. -- v2: msvcrt: remove unneeded _tzset_init() & blank lines https://gitlab.winehq.org/wine/wine/-/merge_requests/10893