mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
17 lines
285 B
C
17 lines
285 B
C
#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
|