diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-03-25 14:18:18 +0000 | 
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-03-25 14:18:18 +0000 | 
| commit | caac542b235003f7b79d7aa23eaebe8f2c772508 (patch) | |
| tree | f70b42312f091b10c9e3d871fe1a70d573e7cba4 /py/builtin.h | |
| parent | 1dfde891e3e26543da6d42215da6a23c32b0a8bc (diff) | |
Proper support for registering builtin modules in ROM.
Comes with some refactoring of code and renaming of files.  All modules
are now named mod*.[ch].
Diffstat (limited to 'py/builtin.h')
| -rw-r--r-- | py/builtin.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h index 69b94e018..45da172d1 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -32,5 +32,7 @@ MP_DECLARE_CONST_FUN_OBJ(mp_builtin_sum_obj);  MP_DECLARE_CONST_FUN_OBJ(mp_namedtuple_obj); +extern const mp_obj_module_t mp_module_array; +extern const mp_obj_module_t mp_module_collections;  extern const mp_obj_module_t mp_module_math;  extern const mp_obj_module_t mp_module_micropython;  | 
