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
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue