diff options
| author | Dave Astels <dastels@daveastels.com> | 2019-08-21 14:08:24 -0400 |
|---|---|---|
| committer | Dave Astels <dastels@daveastels.com> | 2019-08-21 14:08:24 -0400 |
| commit | 5023b622688ef7a4c2e9add3156ffb04e7327674 (patch) | |
| tree | 579a27681112ecce5031930daa44bde7fbf35ccf | |
| parent | 8bbab0131671e5a30606ebaba11c8c38487344e3 (diff) | |
Make them static (fixing build break?) as they aren't needed by Display
| -rw-r--r-- | py/objarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objarray.c b/py/objarray.c index 61d55f255..9114a63c5 100644 --- a/py/objarray.c +++ b/py/objarray.c @@ -92,7 +92,7 @@ STATIC void array_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t #endif #if MICROPY_PY_BUILTINS_BYTEARRAY || MICROPY_PY_ARRAY -mp_obj_array_t *array_new(char typecode, size_t n) { +STATIC mp_obj_array_t *array_new(char typecode, size_t n) { int typecode_size = mp_binary_get_size('@', typecode, NULL); mp_obj_array_t *o = m_new_obj(mp_obj_array_t); #if MICROPY_PY_BUILTINS_BYTEARRAY && MICROPY_PY_ARRAY @@ -396,7 +396,7 @@ STATIC mp_obj_t array_extend(mp_obj_t self_in, mp_obj_t arg_in) { STATIC MP_DEFINE_CONST_FUN_OBJ_2(array_extend_obj, array_extend); #endif -mp_obj_t array_subscr(mp_obj_t self_in, mp_obj_t index_in, mp_obj_t value) { +STATIC mp_obj_t array_subscr(mp_obj_t self_in, mp_obj_t index_in, mp_obj_t value) { if (value == MP_OBJ_NULL) { // delete item // TODO implement |
