summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/inttypes/intmax_t.c5
-rw-r--r--src/inttypes/uintmax_t.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/inttypes/intmax_t.c b/src/inttypes/intmax_t.c
new file mode 100644
index 00000000..6cca37f5
--- /dev/null
+++ b/src/inttypes/intmax_t.c
@@ -0,0 +1,5 @@
+#include <inttypes.h>
+typedef long long int intmax_t;
+/*
+STDC(199901)
+*/
diff --git a/src/inttypes/uintmax_t.c b/src/inttypes/uintmax_t.c
new file mode 100644
index 00000000..67aa43e2
--- /dev/null
+++ b/src/inttypes/uintmax_t.c
@@ -0,0 +1,5 @@
+#include <inttypes.h>
+typedef unsigned long long int uintmax_t;
+/*
+STDC(199901)
+*/