diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 22:11:48 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 22:11:48 +0100 |
commit | 1e935d8689f3d15dc3bd06f08f2a0305b7e1c7f4 (patch) | |
tree | 785c4600c8f0e1d2f807b2593c96ad45002da722 /unix/main.c | |
parent | 729f7b42d65c016c9d5f27fb8a8122869f06c129 (diff) | |
parent | 4abaa1b12b81cfe2fb45d5b2fa36a282c15c328d (diff) |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/unix/main.c b/unix/main.c index fd3419a1c..940fe48c1 100644 --- a/unix/main.c +++ b/unix/main.c @@ -357,10 +357,6 @@ int main(int argc, char **argv) { mp_store_name(qstr_from_str("gc"), (mp_obj_t)&pyb_gc_obj); #endif -#if MICROPY_MOD_FFI - ffi_init(); -#endif - // Here is some example code to create a class and instance of that class. // First is the Python, then the C code. // |