diff options
Diffstat (limited to 'bare-arm/main.c')
-rw-r--r-- | bare-arm/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bare-arm/main.c b/bare-arm/main.c index 7405ece5e8..7efcf9ab33 100644 --- a/bare-arm/main.c +++ b/bare-arm/main.c @@ -45,7 +45,7 @@ mp_import_stat_t mp_import_stat(const char *path) { return MP_IMPORT_STAT_NO_EXIST; } -mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) { +mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) { return mp_const_none; } MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open); |