aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/shared/libc/abort_.c
blob: 45a2e0deddd0e33d686cb636002b5ef4dd03794e (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, MP_ERROR_TEXT("abort() called"));
}