summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-14 00:19:35 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-14 00:19:35 +0300
commit9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0 (patch)
treec03b8c891d2796c21dcc83db84418bb7fbf66db9
parent8891b2e7006334e5333a9a35602ae01f0700b12f (diff)
downloadmicropython-9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0.tar.gz
micropython-9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0.zip
zephyr/main: Remove unused __fatal_error().
-rw-r--r--zephyr/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/zephyr/main.c b/zephyr/main.c
index 61de6e168e..25bd88f768 100644
--- a/zephyr/main.c
+++ b/zephyr/main.c
@@ -146,10 +146,6 @@ NORETURN void nlr_jump_fail(void *val) {
while (1);
}
-void NORETURN __fatal_error(const char *msg) {
- while (1);
-}
-
#ifndef NDEBUG
void MP_WEAK __assert_func(const char *file, int line, const char *func, const char *expr) {
printf("Assertion '%s' failed, at file %s:%d\n", expr, file, line);