1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

LibC: Add some missing pieces in inttypes.h

This commit is contained in:
Andreas Kling 2019-09-07 18:18:43 +02:00
parent 899233a925
commit 29f58aef21

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"