timezone! GetSystemTime should be available on all Win32
platforms we support. Perhaps Time::HiRes should be extended to
support WinCE and Novell?
p4raw-id: //depot/perl@12105
time_t tt;
struct tm tmtm;
/* mktime converts local to UTC */
- GetLocalTime (&st);
+ GetSystemTime (&st);
tmtm.tm_sec = st.wSecond;
tmtm.tm_min = st.wMinute;
tmtm.tm_hour = st.wHour;