tests passing

This commit is contained in:
Jack Harper
2021-03-09 13:04:57 +00:00
parent dd9f38d711
commit 2ea0994507

View File

@@ -13,10 +13,6 @@
extern "C" {
#endif
/*
* epicsStrtod() for systems with broken strtod() routine
*/
epicsShareFunc double epicsStrtod(const char *str, char **endp);
/*
* Microsoft apparently added strto[u]ll() in VS2013
@@ -28,6 +24,15 @@ epicsShareFunc double epicsStrtod(const char *str, char **endp);
# define strtoull _strtoui64
#endif
#if (_MSC_VER < 1800) && defined(_MINGW)
/*
* epicsStrtod() for systems with broken strtod() routine
*/
epicsShareFunc double epicsStrtod(const char *str, char **endp);
#else
# define epicsStrtod strtod
#endif
#ifdef __cplusplus
}
#endif