6 lines
129 B
C
6 lines
129 B
C
|
#include <py/runtime.h>
|
||
|
|
||
|
void abort_(void) {
|
||
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_RuntimeError, "abort() called"));
|
||
|
}
|