From 17cac403fc65f73c841a9cecc517bec595f01217 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 10 Feb 2019 16:00:15 -0500 Subject: add missing types --- src/inttypes/intmax_t.c | 5 +++++ src/inttypes/uintmax_t.c | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 src/inttypes/intmax_t.c create mode 100644 src/inttypes/uintmax_t.c (limited to 'src') 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 +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 +typedef unsigned long long int uintmax_t; +/* +STDC(199901) +*/ -- cgit v1.2.1