mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
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
|