Use MS' strto[u]ll() if present

This commit is contained in:
Andrew Johnson
2016-02-12 15:15:19 -06:00
parent d3e046a466
commit 61e61aab24

View File

@@ -23,7 +23,7 @@ epicsShareFunc double epicsStrtod(const char *str, char **endp);
* Older compilers have these equivalents though
*/
#ifndef _MINGW
#if !defined(_MINGW) && (_MSC_VER < 1800)
# define strtoll _strtoi64
# define strtoull _strtoui64
#endif