From 782bb8a06fcb3f2f7a8ebcb6529aed3f8d8850e8 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/physfs_internal.h b/physfs_internal.h index b113a3b..e161478 100644 --- a/physfs_internal.h +++ b/physfs_internal.h @@ -22,8 +22,8 @@ #define assert(x) #endif -#ifdef __MINGW32__ -#include +#if defined(_MSC_VER) || defined(__MINGW32__) +#include #endif #ifdef __cplusplus