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

pull/512/merge
Paul Sokolovsky 2014-04-20 22:15:35 +03:00
rodzic 41809a1ced
commit 353b0289f3
2 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -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"

Wyświetl plik

@ -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"