aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-15 06:04:33 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-15 06:04:33 +0000
commit3808fc02a19e47ed2220e430016129f31e701db7 (patch)
tree21b6b7def0bd4cb2623d39af277f2cc931cfee1f /config.h.win32
parent0060eaf3908ebdb5673b914a83ceca316d9591fb (diff)
Add PRIX64, as we now use it.
svn path=/trunk/; revision=15811
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win3214
1 files changed, 11 insertions, 3 deletions
diff --git a/config.h.win32 b/config.h.win32
index c345bf4e71..492ae8bc51 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -163,14 +163,22 @@
#endif /* _MSC_EXTENSIONS */
#endif /* PRIu64 */
-/* Format for printing 64-bit unsigned hexadecimal numbers */
-#ifndef PRIx64
+/* Formats for printing 64-bit unsigned hexadecimal numbers */
+#ifndef PRIx64
#ifdef _MSC_EXTENSIONS
#define PRIx64 "I64x"
#else /* _MSC_EXTENSIONS */
#define PRIx64 "llx"
#endif /* _MSC_EXTENSIONS */
-#endif /* PRIx64 */
+#endif /* PRIx64 */
+
+#ifndef PRIX64
+#ifdef _MSC_EXTENSIONS
+#define PRIX64 "I64X"
+#else /* _MSC_EXTENSIONS */
+#define PRIX64 "llX"
+#endif /* _MSC_EXTENSIONS */
+#endif /* PRIX64 */
/* Define if you have the z library (-lz). */
@HAVE_LIBZ@