summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtin.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/builtin.h')
-rw-r--r--py/builtin.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/py/builtin.h b/py/builtin.h
index 70cc28ae14..ddd63a7dad 100644
--- a/py/builtin.h
+++ b/py/builtin.h
@@ -30,6 +30,7 @@
mp_obj_t mp_builtin___import__(mp_uint_t n_args, const mp_obj_t *args);
mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs);
+mp_obj_t mp_micropython_mem_info(mp_uint_t n_args, const mp_obj_t *args);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin___build_class___obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin___import___obj);
@@ -91,11 +92,6 @@ extern const mp_obj_module_t mp_module_gc;
extern const mp_obj_dict_t mp_module_builtins_globals;
-struct _dummy_t;
-extern struct _dummy_t mp_sys_stdin_obj;
-extern struct _dummy_t mp_sys_stdout_obj;
-extern struct _dummy_t mp_sys_stderr_obj;
-
// extmod modules
extern const mp_obj_module_t mp_module_uctypes;
extern const mp_obj_module_t mp_module_uzlib;