diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-25 21:03:20 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-25 22:31:26 +0300 |
commit | 8becca7c8289bbadf33abdb6b59618b214a90a30 (patch) | |
tree | 1591d0ecf728fbff92e9a03a10096b9f80f4630a /py/builtin.h | |
parent | 8456cc017bc2e4a9fe063f485c3f2aa410435015 (diff) |
py: mp_builtin___import__(): Add const to arg type.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtin.h b/py/builtin.h index 58b821bf3..6b44a16ea 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -24,7 +24,7 @@ * THE SOFTWARE. */ -mp_obj_t mp_builtin___import__(mp_uint_t n_args, mp_obj_t *args); +mp_obj_t mp_builtin___import__(mp_uint_t n_args, const mp_obj_t *args); mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs); MP_DECLARE_CONST_FUN_OBJ(mp_builtin___build_class___obj); |