diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-09 20:43:10 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-09 20:43:10 +0300 |
commit | 23b3b04072345c372ff202e39357ceb4422c16db (patch) | |
tree | 31ab6c219f8c219229eda826fa6c037f8539c132 /unix/main.c | |
parent | a2d8f98a7ebff40e0e6271566d7d49b43966f12b (diff) |
unix: Rename "microsocket" module to "usocket".
Per new conventions, we'd like to consistently use "u*" naming conventions
for modules which don't offer complete CPython compatibility, while offer
subset or similar API.
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 51a741841..86d7e9eb4 100644 --- a/unix/main.c +++ b/unix/main.c @@ -64,10 +64,6 @@ mp_uint_t mp_verbose_flag = 0; long heap_size = 128*1024 * (sizeof(mp_uint_t) / 4); #endif -void microsocket_init(); -void time_init(); -void ffi_init(); - #define FORCED_EXIT (0x100) // returns standard error codes: 0 for success, 1 for all other errors // if FORCED_EXIT bit is set then script raised SystemExit and the |