shithub: npe

Download patch

ref: 2e9907432d0ec7a982dc6a7407e67bcd186e2fd8
parent: 971139413906f12cc401f845dca841ab80d51d9d
author: Jacob Moody <moody@posixcafe.org>
date: Fri Dec 12 00:04:00 EST 2025

npe: add more inttypes.h

--- a/include/npe/inttypes.h
+++ b/include/npe/inttypes.h
@@ -11,10 +11,12 @@
 #define PRIu32 "u"
 #define PRIi32 PRId32
 #define PRIx32 "x"
+#define PRIo64 "llo"
 #define PRId64 "lld"
 #define PRIu64 "llu"
 #define PRIi64 PRId64
 #define PRIx64 "llx"
+#define PRIX64 "llX"
 #define PRIdPTR "p"
 #define PRIuPTR "p"
 
--