LibC: Add some missing pieces in inttypes.h

This commit is contained in:
Andreas Kling 2019-09-07 18:18:43 +02:00
commit 29f58aef21
Notes: sideshowbarker 2024-07-19 12:14:03 +09:00

View file

@ -18,3 +18,9 @@
#define PRIx16 "w"
#define PRIx32 "x"
#define PRIx64 "llx"
#define __PRI64_PREFIX "ll"
#define __PRIPTR_PREFIX
#define PRIdPTR __PRIPTR_PREFIX "d"
#define PRIiPTR __PRIPTR_PREFIX "i"