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:
parent
26b2461cf9
commit
d708686a49
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user