From d17926db710189db97a49e9b2e72d782fc404231 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 30 Mar 2014 13:35:08 +0100 Subject: Rename rt_* to mp_*. Mostly just a global search and replace. Except rt_is_true which becomes mp_obj_is_true. Still would like to tidy up some of the names, but this will do for now. --- unix-cpy/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unix-cpy/main.c') diff --git a/unix-cpy/main.c b/unix-cpy/main.c index 7e2703139e..da385ae612 100644 --- a/unix-cpy/main.c +++ b/unix-cpy/main.c @@ -61,7 +61,7 @@ void do_file(const char *file) { int main(int argc, char **argv) { qstr_init(); - rt_init(); + mp_init(); if (argc == 2) { do_file(argv[1]); @@ -69,7 +69,7 @@ int main(int argc, char **argv) { printf("usage: py []\n"); return 1; } - rt_deinit(); + mp_deinit(); return 0; } -- cgit v1.2.3