Skip to content
Snippets Groups Projects
Commit df896ece authored by Damien George's avatar Damien George
Browse files

Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-alloca

parents 9e951498 0c90eb16
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <alloca.h>
#include "mpconfig.h" #include "mpconfig.h"
#include "nlr.h" #include "nlr.h"
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <stdbool.h> #include <stdbool.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <alloca.h>
#include "mpconfig.h" #include "mpconfig.h"
#include "nlr.h" #include "nlr.h"
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <alloca.h>
#include "mpconfig.h" #include "mpconfig.h"
#include "nlr.h" #include "nlr.h"
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <alloca.h>
#include "mpconfig.h" #include "mpconfig.h"
#include "nlr.h" #include "nlr.h"
......
...@@ -37,7 +37,6 @@ ...@@ -37,7 +37,6 @@
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netdb.h> #include <netdb.h>
#include <errno.h> #include <errno.h>
#include <alloca.h>
#include "mpconfig.h" #include "mpconfig.h"
#include "nlr.h" #include "nlr.h"
......
...@@ -99,3 +99,11 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj; ...@@ -99,3 +99,11 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj;
#define MICROPY_PORT_BUILTINS \ #define MICROPY_PORT_BUILTINS \
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \ { 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 }, { 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
...@@ -114,7 +114,7 @@ void msec_sleep(double msec); ...@@ -114,7 +114,7 @@ void msec_sleep(double msec);
#include <stddef.h> //for NULL #include <stddef.h> //for NULL
#include <assert.h> //for assert #include <assert.h> //for assert
#include <alloca.h> //for alloca()
// Functions implemented in platform code // Functions implemented in platform code
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment