1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:37:35 +00:00

LibC: Add definition for PRIuPTR

This commit is contained in:
Gunnar Beutner 2021-06-18 15:05:03 +02:00 committed by Andreas Kling
parent 7fa5f6be7d
commit cf79b499f6

View file

@ -36,8 +36,10 @@ __BEGIN_DECLS
#define PRIu32 "u"
#ifndef __LP64__
# define PRIu64 "llu"
# define PRIuPTR "x"
#else
# define PRIu64 "lu"
# define PRIuPTR "lx"
#endif
#define PRIx8 "b"
#define PRIX8 "hhX"