diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-15 00:07:56 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-15 00:07:56 +0300 |
commit | 9b0714b24cb140ea630ea6176ae68b2ec6945c6b (patch) | |
tree | b59e3a29d3b864fe4b2d2478e4512b73ada93844 /esp8266 | |
parent | 272fad6d9c2261d35088866f544797fd77ff51e3 (diff) | |
download | micropython-9b0714b24cb140ea630ea6176ae68b2ec6945c6b.tar.gz micropython-9b0714b24cb140ea630ea6176ae68b2ec6945c6b.zip |
py: Declare help, input, open builtins in core.
These are *defined* per-port, but why redeclare them again and again.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/mpconfigport.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 4aba682676..577b373981 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -104,7 +104,6 @@ typedef uint32_t sys_prot_t; // for modlwip #define MP_PLAT_PRINT_STRN(str, len) mp_hal_stdout_tx_strn_cooked(str, len) // extra built in names to add to the global namespace -extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj; #define MICROPY_PORT_BUILTINS \ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, |