shithub: npe

Download patch

ref: 6ec40498e99f2cec2cd939da43b128a1212ce9e5
parent: c42b535e5f0a337ac0d2cc34b18b718cd1e64875
author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
date: Sun Dec 19 14:36:39 EST 2021

inttypes: add more PRI* stuff

--- a/include/npe/inttypes.h
+++ b/include/npe/inttypes.h
@@ -5,6 +5,10 @@
 
 #define CHAR_BIT 8
 
-#define PRIi64 "lld"
+#define PRId64 "%lld"
+#define PRIu64 "%llud"
+#define PRIi64 PRId64
+#define PRIx64 "%llx"
+#define PRIdPTR "%p"
 
 #endif