From a8842c9713f78c212c296c2fbca5d21a38ce467b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 12 Jul 2007 10:37:56 +0000 Subject: [PATCH] Whoops, it's malloc.h, not alloca.h ... --- physfs_internal.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/physfs_internal.h b/physfs_internal.h index 7fc37df7..75bbf52c 100644 --- a/physfs_internal.h +++ b/physfs_internal.h @@ -25,14 +25,10 @@ #endif /* !!! FIXME: remove this when revamping stack allocation code... */ -#ifdef _MSC_VER +#if defined(_MSC_VER) || defined(__MINGW32__) #include #endif -#ifdef __MINGW32__ -#include -#endif - #ifdef __cplusplus extern "C" { #endif