17 lines
301 B
C
Executable File
17 lines
301 B
C
Executable File
#if defined(__FreeBSD__)
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#elif defined ( __APPLE__ ) || defined ( __APPLE_CC__ )
|
|
#include <malloc/malloc.h>
|
|
#include <alloca.h>
|
|
#elif defined(_WIN32)
|
|
#include <malloc.h>
|
|
#else
|
|
#include <malloc.h>
|
|
// Alloca needed on Ubuntu apparently
|
|
#include <alloca.h>
|
|
#endif
|