diff options
Diffstat (limited to 'py/objzip.c')
-rw-r--r-- | py/objzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/objzip.c b/py/objzip.c index 6560a08bc7..5e5d35df44 100644 --- a/py/objzip.c +++ b/py/objzip.c @@ -13,7 +13,7 @@ typedef struct _mp_obj_zip_t { mp_obj_t iters[]; } mp_obj_zip_t; -static mp_obj_t zip_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { +STATIC mp_obj_t zip_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { // TODO check n_kw == 0 mp_obj_zip_t *o = m_new_obj_var(mp_obj_zip_t, mp_obj_t, n_args); @@ -25,11 +25,11 @@ static mp_obj_t zip_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_ return o; } -static mp_obj_t zip_getiter(mp_obj_t self_in) { +STATIC mp_obj_t zip_getiter(mp_obj_t self_in) { return self_in; } -static mp_obj_t zip_iternext(mp_obj_t self_in) { +STATIC mp_obj_t zip_iternext(mp_obj_t self_in) { assert(MP_OBJ_IS_TYPE(self_in, &zip_type)); mp_obj_zip_t *self = self_in; mp_obj_t *items; |