mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +01:00
8 lines
159 B
C
8 lines
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"));
|
|
}
|