aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-25 03:26:56 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-25 03:26:56 +0000
commit7e68a1e2cffb04817665f70be7e7a365ecadac48 (patch)
tree1129ce5a013b467de8c4bf325e257907166df74b /config.h.win32
parentc8235fae25f2fed7318e9b32baee8e3ff04aca78 (diff)
"_strtoui64()" first appeared in MSVC++ 7 (good job of supporting those
64-bit ints *present in MSVC++ 6*, Microsoft!), so we can't use it. Use "g_ascii_strtoull()", instead - it's present in GLib 2.x, and we require GLib 2.x on Win32. (It's not present in 1.2[.x], and we don't require 2.x for UN*X, so we don't just use it everywhere.) svn path=/trunk/; revision=11824
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win322
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h.win32 b/config.h.win32
index 71820b9977..339b29a59d 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -158,7 +158,7 @@
#endif /* PRIx64 */
/* Define as a function that behaves like strtoull */
-#define strtoull _strtoui64
+#define strtoull g_ascii_strtoull
/* Define if you have the z library (-lz). */
@HAVE_LIBZ@