diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-13 12:52:39 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-13 12:52:39 +0100 |
commit | 640e7e4779d5d6b5e53fa305e5fe824da7783090 (patch) | |
tree | c299b3caf77aca8923a6fdb5554dd5a27ffc4c4e /unix/mpconfigport.h | |
parent | f95c68e53638aa363797595b0d618bbe08c56bb3 (diff) | |
parent | 4165cd1c0cfc4eabf446be504787090be84a421b (diff) | |
download | micropython-640e7e4779d5d6b5e53fa305e5fe824da7783090.tar.gz micropython-640e7e4779d5d6b5e53fa305e5fe824da7783090.zip |
Merge pull request #476 from pfalcon/static-sys
Convert sys module to static allocation
Diffstat (limited to 'unix/mpconfigport.h')
-rw-r--r-- | unix/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index e2f2a69e11..832bdb05fb 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -13,6 +13,7 @@ #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE) #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_PATH_MAX (PATH_MAX) +#define MICROPY_MOD_SYS_STDFILES (1) // type definitions for the specific machine |