diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-10 21:41:14 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-10 21:41:14 +0000 |
commit | 8c2b333affea7445c457c5247df047947bed9b53 (patch) | |
tree | b697957a499162ccca3219dca426b1bcd35cd0c7 /unix/main.c | |
parent | 7d0bfbedd218fadd91e2bbeb6486371ffeb7b682 (diff) | |
parent | 2e24ee8d80de20e879275c087ecc1ca9b4d27297 (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, 2 insertions, 2 deletions
diff --git a/unix/main.c b/unix/main.c index 9fb25a43e..5fdfbc36a 100644 --- a/unix/main.c +++ b/unix/main.c @@ -23,7 +23,7 @@ extern const mp_obj_fun_native_t mp_builtin_open_obj; void file_init(); -void rawsocket_init(); +void microsocket_init(); void time_init(); void ffi_init(); @@ -265,7 +265,7 @@ int main(int argc, char **argv) { rt_store_name(qstr_from_str("qstr_info"), rt_make_function_n(0, qstr_info)); file_init(); - rawsocket_init(); + microsocket_init(); #if MICROPY_MOD_TIME time_init(); #endif |