py/obj.h: Move declaration of mp_obj_list_init to objlist.h.

If this function is used then objlist.h is already included to get the
definition of mp_obj_list_t.
This commit is contained in:
Damien George
2018-03-13 14:03:15 +11:00
parent 9f811e9096
commit e0bc438e4b
2 changed files with 2 additions and 2 deletions

View File

@@ -35,4 +35,6 @@ typedef struct _mp_obj_list_t {
mp_obj_t *items;
} mp_obj_list_t;
void mp_obj_list_init(mp_obj_list_t *o, size_t n);
#endif // MICROPY_INCLUDED_PY_OBJLIST_H