summaryrefslogtreecommitdiff
path: root/src/embtk/include/malloc.h
blob: 81d3bef87503fe97f77f8f5141350d0f5b2832e0 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __malloc_compat_h
#define __malloc_compat_h

#if defined(__APPLE__)
#include <stdlib.h>
#else
#include_next <malloc.h>
#endif

#endif