summaryrefslogtreecommitdiff
path: root/firmware/export/panic.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2014-08-25 13:55:16 -0400
committerMichael Sevakis <jethead71@rockbox.org>2014-08-25 13:55:16 -0400
commit2cb274ca77815eab565106d16f2e7592cd5c3650 (patch)
treeff323c5d0cd8ea4e96fcd6b5826f383957e02b23 /firmware/export/panic.h
parent6ffb8ffeeed9aca75c278906785a957d72b3ef57 (diff)
downloadrockbox-2cb274ca77815eab565106d16f2e7592cd5c3650.tar.gz
rockbox-2cb274ca77815eab565106d16f2e7592cd5c3650.zip
panicf doesn't return so why not tell GCC and $AVE :
Change-Id: I6096576f539bfb02b340b82fabc5019f6756b722
Diffstat (limited to 'firmware/export/panic.h')
-rw-r--r--firmware/export/panic.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/firmware/export/panic.h b/firmware/export/panic.h
index 7767c675cf..8e35bfff16 100644
--- a/firmware/export/panic.h
+++ b/firmware/export/panic.h
@@ -25,9 +25,6 @@
25#include "config.h" 25#include "config.h"
26#include "gcc_extensions.h" 26#include "gcc_extensions.h"
27 27
28#if defined(CPU_ARM) 28void panicf( const char *fmt, ... ) ATTRIBUTE_PRINTF(1, 2) NORETURN_ATTR;
29void panicf( const char *fmt, ... ) __attribute__ ((naked)) ATTRIBUTE_PRINTF(1, 2); 29
30#else
31void panicf( const char *fmt, ... ) ATTRIBUTE_PRINTF(1, 2);
32#endif
33#endif /* __PANIC_H__ */ 30#endif /* __PANIC_H__ */