[pure-lang-svn] SF.net SVN: pure-lang: [200] pure/trunk/runtime.cc
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-06-09 23:11:04
|
Revision: 200 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=200&view=rev Author: agraef Date: 2008-06-09 16:11:12 -0700 (Mon, 09 Jun 2008) Log Message: ----------- Get alloca on Windows using mingw. Modified Paths: -------------- pure/trunk/runtime.cc Modified: pure/trunk/runtime.cc =================================================================== --- pure/trunk/runtime.cc 2008-06-09 23:02:05 UTC (rev 199) +++ pure/trunk/runtime.cc 2008-06-09 23:11:12 UTC (rev 200) @@ -13,6 +13,9 @@ # endif # endif #endif +#ifdef __MINGW32__ +#include <malloc.h> +#endif #include "runtime.h" #include "expr.hh" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |