Browse Source

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

pull/675/head
Damien George 11 years ago
parent
commit
df896eceef
  1. 1
      py/builtinimport.c
  2. 1
      py/objfun.c
  3. 1
      py/runtime.c
  4. 1
      py/vm.c
  5. 1
      unix/modsocket.c
  6. 8
      unix/mpconfigport.h
  7. 2
      windows/mpconfigport.h

1
py/builtinimport.c

@ -29,7 +29,6 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <alloca.h>
#include "mpconfig.h"
#include "nlr.h"

1
py/objfun.c

@ -28,7 +28,6 @@
#include <stdbool.h>
#include <string.h>
#include <assert.h>
#include <alloca.h>
#include "mpconfig.h"
#include "nlr.h"

1
py/runtime.c

@ -27,7 +27,6 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <alloca.h>
#include "mpconfig.h"
#include "nlr.h"

1
py/vm.c

@ -28,7 +28,6 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <alloca.h>
#include "mpconfig.h"
#include "nlr.h"

1
unix/modsocket.c

@ -37,7 +37,6 @@
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <alloca.h>
#include "mpconfig.h"
#include "nlr.h"

8
unix/mpconfigport.h

@ -99,3 +99,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

2
windows/mpconfigport.h

@ -114,7 +114,7 @@ void msec_sleep(double msec);
#include <stddef.h> //for NULL
#include <assert.h> //for assert
#include <alloca.h> //for alloca()
// Functions implemented in platform code

Loading…
Cancel
Save