provide definitions for PRIu64 if missing
This commit is contained in:
parent
b5f456f839
commit
9c24b7e23f
|
@ -51,8 +51,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
// MinGW uses microsofts runtime
|
// MinGW uses microsofts runtime
|
||||||
#if defined _MSC_VER || defined __MINGW32__
|
#if defined _MSC_VER || defined __MINGW32__
|
||||||
#define PRId64 "I64d"
|
#define PRId64 "I64d"
|
||||||
|
#define PRIu64 "I64u"
|
||||||
#else
|
#else
|
||||||
#define PRId64 "lld"
|
#define PRId64 "lld"
|
||||||
|
#define PRIu64 "llu"
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue