summaryrefslogtreecommitdiffstatshomepage
path: root/unix-cpy/main.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-30 13:35:08 +0100
committerDamien George <damien.p.george@gmail.com>2014-03-30 13:35:08 +0100
commitd17926db710189db97a49e9b2e72d782fc404231 (patch)
tree406396ee6f3010511a606dd4ea3ed5a817d959eb /unix-cpy/main.c
parent09d207785c77c85c957471b064ceebe0d2ee0a23 (diff)
downloadmicropython-d17926db710189db97a49e9b2e72d782fc404231.tar.gz
micropython-d17926db710189db97a49e9b2e72d782fc404231.zip
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.
Diffstat (limited to 'unix-cpy/main.c')
-rw-r--r--unix-cpy/main.c4
1 files changed, 2 insertions, 2 deletions
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 [<file>]\n");
return 1;
}
- rt_deinit();
+ mp_deinit();
return 0;
}