Use the correct magic for long long

This commit is contained in:
hpa 2004-01-15 20:21:42 +00:00
parent 0a85ac914b
commit 5fbd57b61a

View file

@ -134,9 +134,9 @@
#ifdef HAVE_LONG_LONG
typedef long long intmax_t;
typedef unsigned long long uintmax_t;
#define PRIdMAX "Ld"
#define PRIuMAX "Lu"
#define PRIxMAX "Lx"
#define PRIdMAX "lld"
#define PRIuMAX "llu"
#define PRIxMAX "llx"
#define INTMAX_C(x) (x##LL)
#define UINTMAX_C(x) (x##ULL)
#else