py: Add win32-specific header for alloca().

This commit is contained in:
Paul Sokolovsky 2014-04-20 22:15:35 +03:00
parent 41809a1ced
commit 353b0289f3
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,10 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
#ifdef __MINGW32__
// For alloca()
#include <malloc.h>
#endif
#include "nlr.h"
#include "misc.h"

View File

@ -2,6 +2,10 @@
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#ifdef __MINGW32__
// For alloca()
#include <malloc.h>
#endif
#include "nlr.h"
#include "misc.h"