diff options
Diffstat (limited to 'src/cc-compat.h')
| -rw-r--r-- | src/cc-compat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cc-compat.h b/src/cc-compat.h index cce4ca9b1..78dfba7d1 100644 --- a/src/cc-compat.h +++ b/src/cc-compat.h @@ -65,6 +65,13 @@ # define PRIuZ "zu" #endif +/* Define the printf format for 64 bit types */ +#if defined(__MINGW32__) +# define PRIdMAX "I64d" +#else +# define PRIdMAX "lld" +#endif + /* Micosoft Visual C/C++ */ #if defined(_MSC_VER) /* disable "deprecated function" warnings */ |
