Skip to content
Snippets Groups Projects
Commit 353b0289 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

parent 41809a1c
Branches
No related tags found
No related merge requests found
......@@ -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"
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment