Skip to content

Commit 58d9d85

Browse files
committed
lib/abort_.c: Add prototype to make coverage build happy.
1 parent ba2c503 commit 58d9d85

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/embed/abort_.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <py/runtime.h>
22

3-
void abort_(void) {
3+
NORETURN void abort_(void);
4+
5+
NORETURN void abort_(void) {
46
nlr_raise(mp_obj_new_exception_msg(&mp_type_RuntimeError, "abort() called"));
57
}

0 commit comments

Comments
 (0)