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 #ifdef HAVE_LONG_LONG
typedef long long intmax_t; typedef long long intmax_t;
typedef unsigned long long uintmax_t; typedef unsigned long long uintmax_t;
#define PRIdMAX "Ld" #define PRIdMAX "lld"
#define PRIuMAX "Lu" #define PRIuMAX "llu"
#define PRIxMAX "Lx" #define PRIxMAX "llx"
#define INTMAX_C(x) (x##LL) #define INTMAX_C(x) (x##LL)
#define UINTMAX_C(x) (x##ULL) #define UINTMAX_C(x) (x##ULL)
#else #else