This commit is contained in:
2026-04-01 23:13:15 +02:00
commit 78c2d9c659
2100 changed files with 610164 additions and 0 deletions

View 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