Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
353b0289
Commit
353b0289
authored
Apr 20, 2014
by
Paul Sokolovsky
Browse files
py: Add win32-specific header for alloca().
parent
41809a1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
py/builtinimport.c
View file @
353b0289
...
...
@@ -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"
...
...
py/objfun.c
View file @
353b0289
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment