summaryrefslogtreecommitdiffstatshomepage
path: root/lib/embed/abort_.c
blob: b54d08f2c9831738d8dff3490acb50ce2ac2632d (plain) (blame)
1
2
3
4
5
#include <py/runtime.h>

void abort_(void) {
    nlr_raise(mp_obj_new_exception_msg(&mp_type_RuntimeError, "abort() called"));
}