Whoops, it's malloc.h, not alloca.h ...

This commit is contained in:
Ryan C. Gordon 2007-07-12 10:37:56 +00:00
parent 8d1003ce7f
commit 782bb8a06f
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
#define assert(x)
#endif
#ifdef __MINGW32__
#include <alloca.h>
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <malloc.h>
#endif
#ifdef __cplusplus