aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-31 18:38:07 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-31 18:38:07 +0000
commiteb1060140886e2f67ea012a407bf76a83bce6ba4 (patch)
treeb694fe09f4a22f9aa652f61f8e4890ab11978fb2 /config.h.win32
parent2f9d26f6d97a80fb15dceb663368849836571ec4 (diff)
Remove PRId64, PRIu64, PRIx64, PRIX64, and PRIo64 which are unused
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29638 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win3250
1 files changed, 0 insertions, 50 deletions
diff --git a/config.h.win32 b/config.h.win32
index 6c364cc2ea..1f7ff3d00b 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -161,56 +161,6 @@
/* Define if <inttypes.h> defines PRI[doxu]64 macros */
/* #define INTTYPES_H_DEFINES_FORMATS */
-/* Format for printing 64-bit signed decimal numbers */
-#ifndef PRId64
-#ifdef _MSC_EXTENSIONS
-#define PRId64 "I64d"
-#else /* _MSC_EXTENSIONS */
-#define PRId64 "lld"
-#endif /* _MSC_EXTENSIONS */
-#endif /* PRId64 */
-
-/* Format for printing 64-bit unsigned octal numbers */
-#ifndef PRIo64
-#ifdef _MSC_EXTENSIONS
-#define PRIo64 "I64o"
-#else /* _MSC_EXTENSIONS */
-#define PRIo64 "llo"
-#endif /* _MSC_EXTENSIONS */
-#endif /* PRIo64 */
-
-/* Format for printing 64-bit unsigned decimal numbers */
-#ifndef PRIu64
-#ifdef _MSC_EXTENSIONS
-#define PRIu64 "I64u"
-#else /* _MSC_EXTENSIONS */
-#define PRIu64 "llu"
-#endif /* _MSC_EXTENSIONS */
-#endif /* PRIu64 */
-
-/* Formats for printing 64-bit unsigned hexadecimal numbers */
-/* XXX - it seems that GLib has problems with the MSVC like I64x.
- As we use GLib's g_sprintf and alike, it should be safe to use
- llx everywhere now, making the macros pretty useless. For details see:
- http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1025 */
-#ifndef PRIx64
-#ifdef _MSC_EXTENSIONS
-/*#define PRIx64 "I64x"*/
-#define PRIx64 "llx"
-#else /* _MSC_EXTENSIONS */
-#define PRIx64 "llx"
-#endif /* _MSC_EXTENSIONS */
-#endif /* PRIx64 */
-
-#ifndef PRIX64
-#ifdef _MSC_EXTENSIONS
-/*#define PRIX64 "I64X"*/
-#define PRIX64 "llX"
-#else /* _MSC_EXTENSIONS */
-#define PRIX64 "llX"
-#endif /* _MSC_EXTENSIONS */
-#endif /* PRIX64 */
-
/* Define if you have the z library (-lz). */
@HAVE_LIBZ@