commit | 969a6b37bfc655609e540053c2bdcce8a6fdc64d | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Wed Dec 10 22:07:04 2014 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Wed Dec 10 22:08:14 2014 +0000 |
tree | 5e7d74f72d702efd07ff6ba6d93d3a10e4e00fd2 | |
parent | d51107927d53a80835195ba1ac97048c203f05f2 [diff] [blame] |
py: Make functions static where appropriate.
diff --git a/py/objlist.c b/py/objlist.c index 1531b6b..3e53557 100644 --- a/py/objlist.c +++ b/py/objlist.c
@@ -497,7 +497,7 @@ mp_uint_t cur; } mp_obj_list_it_t; -mp_obj_t list_it_iternext(mp_obj_t self_in) { +STATIC mp_obj_t list_it_iternext(mp_obj_t self_in) { mp_obj_list_it_t *self = self_in; if (self->cur < self->list->len) { mp_obj_t o_out = self->list->items[self->cur];