summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-27 19:18:50 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-27 19:18:50 -0500
commit4526ea0fe82b98e2298a3eb66e4ada7518633704 (patch)
treefbf30549bc74e70cf45b9e8107d6b0806666efb8
parent3aacd9ae44c93af2e83bb375e0f15555ebe373e0 (diff)
compile cleanly
-rw-r--r--src/inttypes/imaxabs.c1
-rw-r--r--src/inttypes/imaxdiv.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c
index 4f820239..7d6be923 100644
--- a/src/inttypes/imaxabs.c
+++ b/src/inttypes/imaxabs.c
@@ -1,3 +1,4 @@
+#include "stddef.h"
#include <inttypes.h>
intmax_t imaxabs(intmax_t j)
diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c
index 043cee45..b8344e5a 100644
--- a/src/inttypes/imaxdiv.c
+++ b/src/inttypes/imaxdiv.c
@@ -1,3 +1,4 @@
+#include "stddef.h"
#include <inttypes.h>
imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom)