rename _mkgmtime as timegm on win32

This commit is contained in:
Brent Cook 2015-10-07 06:23:38 -05:00
parent 047926e06f
commit a615d3c6d3

View File

@ -13,3 +13,7 @@
#else
#include_next <time.h>
#endif
#ifdef _WIN32
#define timegm(tm) _mkgmtime(tm)
#endif