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/runtime0.h | |
parent | 8767d0710ee3f0b78fdfa7b73750d5b66048b8b0 (diff) |
py: Factor out code from runtime.c to emitglue.c.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 07fcf0705..a650e704a 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -93,10 +93,3 @@ typedef enum { } rt_fun_kind_t; extern void *const rt_fun_table[RT_F_NUMBER_OF]; - -void rt_init(void); -void rt_deinit(void); -uint rt_get_unique_code_id(void); -void rt_assign_byte_code(uint unique_code_id, byte *code, uint len, int n_args, int n_locals, int n_stack, uint scope_flags, qstr *arg_names); -void rt_assign_native_code(uint unique_code_id, void *f, uint len, int n_args); -void rt_assign_inline_asm_code(uint unique_code_id, void *f, uint len, int n_args); |