diff options
Diffstat (limited to 'ports/zephyr/main.c')
-rw-r--r-- | ports/zephyr/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/zephyr/main.c b/ports/zephyr/main.c index d4498c1079..45af7b0c72 100644 --- a/ports/zephyr/main.c +++ b/ports/zephyr/main.c @@ -219,7 +219,7 @@ mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open); #endif -NORETURN void nlr_jump_fail(void *val) { +MP_NORETURN void nlr_jump_fail(void *val) { while (1) { ; } |