aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-22 01:43:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-22 01:43:16 +0000
commit21fc977ccf8ad0c16c3d224471186c5dde77a772 (patch)
tree9b960cd327ed293a0c3c06d0dec9c453fda8a4d4 /config.h.win32
parent7277e8f90f083baf42dab535fbd751b4bde9eba6 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11799 f5534014-38df-0310-8fa8-9805f1628bb7
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@