From a6a96c71100d437ec6d91b0e88391fa869b4b507 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 12 Sep 2013 16:09:18 +0200 Subject: [PATCH] added missing malloc includes --- sys/lib/hashtable.c | 2 +- sys/net/sixlowpan/icmp.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/lib/hashtable.c b/sys/lib/hashtable.c index 66b067faa7..43735b0f7a 100644 --- a/sys/lib/hashtable.c +++ b/sys/lib/hashtable.c @@ -5,7 +5,7 @@ #include #include #include -#include "oneway_malloc.h" +#include "malloc.h" #include "hashtable.h" #include "hashtable_private.h" diff --git a/sys/net/sixlowpan/icmp.c b/sys/net/sixlowpan/icmp.c index b3378cb953..b9c09b90df 100644 --- a/sys/net/sixlowpan/icmp.c +++ b/sys/net/sixlowpan/icmp.c @@ -21,6 +21,7 @@ #include #include +#include "malloc.h" #include "vtimer.h" #include "mutex.h" #include "sixlowpan/error.h"