1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

fix malloc include for OSX

This commit is contained in:
Ludwig Ortmann 2013-10-16 11:08:51 +02:00
parent 26b2461cf9
commit d708686a49

View File

@ -5,7 +5,13 @@
#include <string.h>
#include <stdint.h>
#include <math.h>
#if (defined(__MACH__) || defined(__FreeBSD__))
#include <stdlib.h>
#else
#include "malloc.h"
#endif
#include "hashtable.h"
#include "hashtable_private.h"