the whole game
This commit is contained in:
16
project/lib_projects/raknet/jni/RaknetSources/RakAlloca.h
Executable file
16
project/lib_projects/raknet/jni/RaknetSources/RakAlloca.h
Executable file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user