commit | 5ed284a15e028e0435f3b6e0773e14225d8f165d | [log] [tgz] |
---|---|---|
author | stijn <stinos@zoho.com> | Thu May 08 10:56:33 2014 +0200 |
committer | stijn <stinos@zoho.com> | Fri May 09 13:58:15 2014 +0200 |
tree | b83683ee2d84e423cc00cf630ebb688430a119c4 | |
parent | d25cba4f642e50e2f713b48f5f079036b352f72d [diff] [blame] |
windows: Add modtime implementation
diff --git a/py/runtime.c b/py/runtime.c index 7a701fe..f8eac40 100644 --- a/py/runtime.c +++ b/py/runtime.c
@@ -91,6 +91,11 @@ //mp_obj_dict_free(&dict_main); mp_module_deinit(); mp_emit_glue_deinit(); + + // call port specific deinitialization if any +#ifdef MICROPY_PORT_INIT_FUNC + MICROPY_PORT_DEINIT_FUNC; +#endif } mp_obj_t mp_load_const_dec(qstr qstr) {