diff options
| author | Damien George | 2018-03-13 14:03:15 +1100 |
|---|---|---|
| committer | Damien George | 2018-03-13 14:03:15 +1100 |
| commit | e0bc438e4badb8f2d356479a3bee2b9c45fd69ca (patch) | |
| tree | 08b6c82e77e622992d6bfbdce0e9cfec4fa53790 /py/obj.h | |
| parent | 9f811e9096819230905a5eb47812934531005403 (diff) | |
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.
Diffstat (limited to 'py/obj.h')
| -rw-r--r-- | py/obj.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -744,8 +744,6 @@ void mp_obj_tuple_del(mp_obj_t self_in); mp_int_t mp_obj_tuple_hash(mp_obj_t self_in); // list -struct _mp_obj_list_t; -void mp_obj_list_init(struct _mp_obj_list_t *o, size_t n); mp_obj_t mp_obj_list_append(mp_obj_t self_in, mp_obj_t arg); mp_obj_t mp_obj_list_remove(mp_obj_t self_in, mp_obj_t value); void mp_obj_list_get(mp_obj_t self_in, size_t *len, mp_obj_t **items); |
