diff options
Diffstat (limited to 'py/compile.h')
-rw-r--r-- | py/compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.h b/py/compile.h index ae87bf2a04..5e0fd8b31c 100644 --- a/py/compile.h +++ b/py/compile.h @@ -37,7 +37,7 @@ mp_obj_t mp_compile(mp_parse_tree_t *parse_tree, qstr source_file, bool is_repl) #if MICROPY_PERSISTENT_CODE_SAVE // this has the same semantics as mp_compile -mp_compiled_module_t mp_compile_to_raw_code(mp_parse_tree_t *parse_tree, qstr source_file, bool is_repl, mp_module_context_t *globals); +void mp_compile_to_raw_code(mp_parse_tree_t *parse_tree, qstr source_file, bool is_repl, mp_compiled_module_t *cm); #endif // this is implemented in runtime.c |