summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/arm/_fault_isr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/arm/_fault_isr.c')
-rw-r--r--newlib/libc/sys/arm/_fault_isr.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/newlib/libc/sys/arm/_fault_isr.c b/newlib/libc/sys/arm/_fault_isr.c
index 1272eb56a..f0fc81aed 100644
--- a/newlib/libc/sys/arm/_fault_isr.c
+++ b/newlib/libc/sys/arm/_fault_isr.c
@@ -1,16 +1,12 @@
#include "newlib.h"
-#ifdef _ARM_V7M
-
/* Called when a hardware fault occurs. Users can replace this
function. */
-void
+void
_fault_isr()
{
/* Sit an endless loop so that the user can analyze the situation
from the debugger. */
while (1);
}
-
-#endif