mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-27 05:05:51 +00:00
Add STRING_REP_INT64
This commit is contained in:
parent
728249fa61
commit
a51a259e58
@ -76,10 +76,13 @@ typedef int ssize_t;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
#define STRING_REP_INT64 "%I64u"
|
||||||
#define STRING_REP_ULONG "%Iu"
|
#define STRING_REP_ULONG "%Iu"
|
||||||
#elif defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
|
#elif defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
|
||||||
|
#define STRING_REP_INT64 "%llu"
|
||||||
#define STRING_REP_ULONG "%zu"
|
#define STRING_REP_ULONG "%zu"
|
||||||
#else
|
#else
|
||||||
|
#define STRING_REP_INT64 "%llu"
|
||||||
#define STRING_REP_ULONG "%lu"
|
#define STRING_REP_ULONG "%lu"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user