diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-14 00:19:35 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-14 00:19:35 +0300 |
commit | 9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0 (patch) | |
tree | c03b8c891d2796c21dcc83db84418bb7fbf66db9 | |
parent | 8891b2e7006334e5333a9a35602ae01f0700b12f (diff) | |
download | micropython-9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0.tar.gz micropython-9c9674a32599b8f9268fb479fc1cb3d62a5ec2f0.zip |
zephyr/main: Remove unused __fatal_error().
-rw-r--r-- | zephyr/main.c | 4 |
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); |