diff options
Diffstat (limited to 'esp8266/utils.h')
-rw-r--r-- | esp8266/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/utils.h b/esp8266/utils.h index ceef9720e8..c6a4f1f3e6 100644 --- a/esp8266/utils.h +++ b/esp8266/utils.h @@ -25,5 +25,5 @@ * THE SOFTWARE. */ -mp_obj_t call_function_1_protected(mp_obj_t fun, mp_obj_t arg); -mp_obj_t call_function_2_protected(mp_obj_t fun, mp_obj_t arg1, mp_obj_t arg2); +void call_function_1_protected(mp_obj_t fun, mp_obj_t arg); +void call_function_2_protected(mp_obj_t fun, mp_obj_t arg1, mp_obj_t arg2); |