summaryrefslogtreecommitdiff
path: root/src/inttypes/SCNoPTR.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/inttypes/SCNoPTR.c')
-rw-r--r--src/inttypes/SCNoPTR.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/inttypes/SCNoPTR.c b/src/inttypes/SCNoPTR.c
new file mode 100644
index 00000000..b3d50767
--- /dev/null
+++ b/src/inttypes/SCNoPTR.c
@@ -0,0 +1,10 @@
+#include <inttypes.h>
+#if WORD_BIT == 64
+#define SCNoPTR "llo"
+#else
+#define SCNoPTR "lo"
+#endif
+
+/*
+STDC(199901)
+*/