aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-22 01:43:16 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-22 01:43:16 +0000
commita1871624c7768786860e368984056c0c2c007fb3 (patch)
tree9b960cd327ed293a0c3c06d0dec9c453fda8a4d4 /config.h.win32
parentc4e043e39c07d41649cfbb2a1c6f52f112b77aae (diff)
We're using "strtoull()", not "strtol()" - define "strtoull", not
"strtol", as "_strtoui64". Make the comment match what the UN*X configure script puts in. svn path=/trunk/; revision=11799
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win324
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h.win32 b/config.h.win32
index 05c0f6b2ed..71820b9977 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -157,8 +157,8 @@
#endif /* _MSC_EXTENSIONS */
#endif /* PRIx64 */
-/* Map "_strtoui64()" to "strtoll()" */
-#define strtoll _strtoui64
+/* Define as a function that behaves like strtoull */
+#define strtoull _strtoui64
/* Define if you have the z library (-lz). */
@HAVE_LIBZ@