From 2238d1e462d5571c4ed4cd09e90af791d9e54a54 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Thu, 27 Feb 2014 19:34:14 +0000 Subject: include malloc.h in a few places to avoid warnings on Windows --- src/runtime/c/gu/seq.c | 1 + src/runtime/c/gu/string.c | 1 + 2 files changed, 2 insertions(+) (limited to 'src/runtime/c/gu') diff --git a/src/runtime/c/gu/seq.c b/src/runtime/c/gu/seq.c index 5f0171977..54c92f4de 100644 --- a/src/runtime/c/gu/seq.c +++ b/src/runtime/c/gu/seq.c @@ -4,6 +4,7 @@ #include #include #include +#include struct GuSeq { size_t len; diff --git a/src/runtime/c/gu/string.c b/src/runtime/c/gu/string.c index 8c9afd6e7..9a1677745 100644 --- a/src/runtime/c/gu/string.c +++ b/src/runtime/c/gu/string.c @@ -6,6 +6,7 @@ #include #include #include +#include struct GuStringBuf { GuBuf* buf; -- cgit v1.2.3