aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-10-30 17:08:26 +0000
committerDamien George <damien.p.george@gmail.com>2015-11-09 12:34:05 +0000
commit2e5163486b0f6bb000bee99d397b95fb2b4bb437 (patch)
tree0fc7d8b2fdd0ec0e84b7eec86d511b24756edbc9
parent7ece9055138d29981c93ba602c21095e9a320b21 (diff)
py/mpextern: Remove init declaration for external modules.dynamic-native-modules
It's too generic (clashes with other symbols) and not really needed.
-rw-r--r--py/mpextern.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/py/mpextern.h b/py/mpextern.h
index 6276b6197..8e86c644f 100644
--- a/py/mpextern.h
+++ b/py/mpextern.h
@@ -77,7 +77,4 @@ void mp_extern_load(const char *ext_name, mp_obj_dict_t *globals);
// to be implemented per-port
const byte *mp_extern_load_binary(const char *ext_name);
-// entry point for the extern binary
-void init(const mp_ext_table_t *et);
-
#endif // __MICROPY_INCLUDED_PY_MPEXTERN_H__