micropython/shared/libc/abort_.c

8 wiersze
159 B
C

#include <py/runtime.h>
NORETURN void abort_(void);
NORETURN void abort_(void) {
mp_raise_msg(&mp_type_RuntimeError, MP_ERROR_TEXT("abort() called"));
}