diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-27 23:26:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-27 23:26:35 +0000 |
commit | 2326d52d2056aace9c5eddd170fe6ad4186e39e8 (patch) | |
tree | 0040b59c798301a1fdb30901b5e0d4adae143adb /py/runtime.h | |
parent | 8767d0710ee3f0b78fdfa7b73750d5b66048b8b0 (diff) | |
download | micropython-2326d52d2056aace9c5eddd170fe6ad4186e39e8.tar.gz micropython-2326d52d2056aace9c5eddd170fe6ad4186e39e8.zip |
py: Factor out code from runtime.c to emitglue.c.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index 553a834689..b27d12ff1d 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -1,3 +1,6 @@ +void rt_init(void); +void rt_deinit(void); + void rt_check_nargs(int n_args, machine_uint_t n_args_min, machine_uint_t n_args_max, int n_kw, bool is_kw); int rt_is_true(mp_obj_t arg); |