Commit 58d9d85a authored by Paul Sokolovsky's avatar Paul Sokolovsky

lib/abort_.c: Add prototype to make coverage build happy.

parent ba2c5035
#include <py/runtime.h>
void abort_(void) {
NORETURN void abort_(void);
NORETURN void abort_(void) {
nlr_raise(mp_obj_new_exception_msg(&mp_type_RuntimeError, "abort() called"));
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment