blob: 3eeb42d9e48ba8dd647a2ea591664aa6954eb905 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <py/runtime.h>
#include "supervisor/shared/translate.h"
NORETURN void abort_(void);
NORETURN void abort_(void) {
mp_raise_msg(&mp_type_RuntimeError, translate("abort() called"));
}
|