diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-10 16:00:15 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-10 16:00:15 -0500 |
commit | 17cac403fc65f73c841a9cecc517bec595f01217 (patch) | |
tree | a1e57a323c35ac43845335f9ac99b20d05586061 /src/inttypes | |
parent | 4a627ff0f0f728ac813889ab48e4850a37834e33 (diff) |
add missing types
Diffstat (limited to 'src/inttypes')
-rw-r--r-- | src/inttypes/intmax_t.c | 5 | ||||
-rw-r--r-- | src/inttypes/uintmax_t.c | 5 |
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) +*/ |