_ftime_s() was not available on Windows XP. And people still run XP.

This commit is contained in:
Frank Denis 2014-09-13 10:28:46 -07:00
parent 03b122dd5d
commit fe586939f6

View File

@ -67,7 +67,7 @@ sodium_hrtime(void)
#ifdef _WIN32
struct _timeb tb;
_ftime_s(&tb);
_ftime(&tb);
tv.tv_sec = (long) tb.time;
tv.tv_usec = ((int) tb.millitm) * 1000;
ret = 0;