Include alloca.h on Solaris and Linux platforms.

This commit is contained in:
Matthew Albrecht 2021-06-29 18:56:28 +01:00 committed by Ryan C. Gordon
parent 69a7428787
commit d24ce15922
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
#include <malloc.h> #include <malloc.h>
#endif #endif
#ifdef PHYSFS_PLATFORM_SOLARIS #if defined(PHYSFS_PLATFORM_SOLARIS) || defined(PHYSFS_PLATFORM_LINUX)
#include <alloca.h> #include <alloca.h>
#endif #endif