aboutsummaryrefslogtreecommitdiff
path: root/unix/mpconfigport.h
diff options
context:
space:
mode:
authorMarcus von Appen2014-06-07 09:36:04 +0200
committerMarcus von Appen2014-06-07 09:36:04 +0200
commit0c90eb16586d6c15d619666687449b3351e536fc (patch)
tree90e87eaf27647ebe3d3996d6273672b271d47338 /unix/mpconfigport.h
parentc61be8e1e10a8c7bac3161cae531d26a9d754825 (diff)
- FreeBSD provides alloca() via stdlib.h, in contrast to Linux and Windows
- Move the includes for alloca() intp mpconfigport.h
Diffstat (limited to 'unix/mpconfigport.h')
-rw-r--r--unix/mpconfigport.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h
index ace7a419b..fe68b9934 100644
--- a/unix/mpconfigport.h
+++ b/unix/mpconfigport.h
@@ -98,3 +98,11 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj;
#define MICROPY_PORT_BUILTINS \
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
+
+
+/* We need the correct header for alloca() */
+#ifdef __FreeBSD__
+#include <stdlib.h>
+#else
+#include <alloca.h>
+#endif