From 43eea48d25e8eae851f0c6907041faa1c40eef15 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 12 Sep 2013 16:08:40 +0200 Subject: [PATCH] added define for calloc in msp430-common --- cpu/msp430-common/include/malloc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpu/msp430-common/include/malloc.h b/cpu/msp430-common/include/malloc.h index b0b811c66d..f465d2c11b 100644 --- a/cpu/msp430-common/include/malloc.h +++ b/cpu/msp430-common/include/malloc.h @@ -4,6 +4,7 @@ #include "oneway_malloc.h" #define malloc _malloc +#define calloc _calloc #define realloc _realloc #define free _free