aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-05-05 22:47:32 +0000
committerGuy Harris <guy@alum.mit.edu>2008-05-05 22:47:32 +0000
commit31cae6e4ef358e39961d5620debf04c45311ae76 (patch)
treec41aaed36ad6a43e9b359d865983e833c5e3c6c5 /epan/packet.h
parent773e6321d8a9b05e5031a212dc5123dbd6832acb (diff)
Require GLib 2.4 or later.
That means that G_GINT64_MODIFIER will be defined, so don't check whether it's defined. We don't use the PRI[douxX]64 macros, as we use the GLib print routines and thus use G_GINT64_MODIFIER instead. Get rid of the checks for whether inttypes.h defines PRI[douxX]64; just check whether it exists at all. That means we don't set INTTYPES_H_DEFINES_FORMATS, so don't check for it. svn path=/trunk/; revision=25243
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/epan/packet.h b/epan/packet.h
index edaaacf66c..0ccb278576 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -25,14 +25,6 @@
#ifndef __PACKET_H__
#define __PACKET_H__
-/*
- * If <inttypes.h> defines formats to be used to print 64-bit integers,
- * include it.
- */
-#ifdef INTTYPES_H_DEFINES_FORMATS
-#include <inttypes.h>
-#endif
-
#include "wiretap/wtap.h"
#include "proto.h"
#include "tvbuff.h"