summaryrefslogtreecommitdiff
path: root/multimedia/xawtv/files/patch-console::showqt.c
blob: 970608babebe30d1e49c604e44c3c3aab342aa65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- console/showqt.c.orig	Tue Nov 19 23:49:53 2002
+++ console/showqt.c	Tue Nov 19 23:57:26 2002
@@ -11,6 +11,15 @@
 #include <inttypes.h>
 #include <time.h>
 
+#if !defined(PRId64)
+#define PRId64    "lld"
+#endif
+
+#if !defined(PRIx64)
+#define PRIx64    "llX"
+#endif
+
+
 #if BYTE_ORDER == LITTLE_ENDIAN
 # define SWAP2(x) (((x>>8) & 0x00ff) |\
                    ((x<<8) & 0xff00))