forked from mirrors/tftp-hpa-google
Use the correct magic for long long
This commit is contained in:
parent
0a85ac914b
commit
5fbd57b61a
1 changed files with 3 additions and 3 deletions
6
config.h
6
config.h
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue