We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7a9df commit ab737f6Copy full SHA for ab737f6
src/backend/utils/adt/numutils.c
@@ -402,7 +402,7 @@ pg_ltostr(char *str, int32 value)
402
uint64
403
pg_strtouint64(const char *str, char **endptr, int base)
404
{
405
-#ifdef WIN32
+#ifdef _MSC_VER /* MSVC only */
406
return _strtoui64(str, endptr, base);
407
#elif defined(HAVE_STRTOULL) && SIZEOF_LONG < 8
408
return strtoull(str, endptr, base);
0 commit comments