From 6740eaf611f4e4803fd4ac787e85918f3c552654 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Mon, 14 Oct 2019 02:52:37 +0300 Subject: [PATCH] Add missing stdarg.h include --- c/htable.c | 1 + c/random.c | 1 + 2 files changed, 2 insertions(+) diff --git a/c/htable.c b/c/htable.c index b400cc8..03ea662 100644 --- a/c/htable.c +++ b/c/htable.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include diff --git a/c/random.c b/c/random.c index 9dd94da..b307878 100644 --- a/c/random.c +++ b/c/random.c @@ -4,6 +4,7 @@ #include #include +#include #include #include #include