Merge pull request #8208 from hhromic/fix-prisizet

libretro-common: improve PRI_SIZET for non-windows platforms
This commit is contained in:
Twinaphex 2019-02-07 20:18:03 +01:00 committed by GitHub
commit aa442db22b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,7 +166,15 @@ typedef struct
# endif
# endif
#else
# if (SIZE_MAX == 0xFFFF)
# define PRI_SIZET "hu"
# elif (SIZE_MAX == 0xFFFFFFFF)
# define PRI_SIZET "u"
# elif (SIZE_MAX == 0xFFFFFFFFFFFFFFFF)
# define PRI_SIZET "lu"
# else
# error PRI_SIZET: unknown SIZE_MAX
# endif
#endif
#endif