rt: Include the correct header for alloca on windows

This commit is contained in:
Brian Anderson 2012-04-03 17:14:28 -07:00
parent bc5e10dd1b
commit 81ce090643
1 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
#ifdef __WIN32__
// For alloca
#include <malloc.h>
#endif
#include "rust_globals.h"
#include "rust_task.h"
@ -98,11 +102,7 @@ rust_uv_loop_delete(uv_loop_t* loop) {
// from a malloc with no backtrace.
//
// This pads our stack with some extra space before deleting the loop
#ifndef __WIN32__
alloca(512);
#else
_alloca(512);
#endif
uv_loop_delete(loop);
}