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

NORETURN void abort_(void);

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