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 f3eb059e57
commit 99d0fef19e
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

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