summaryrefslogtreecommitdiff
path: root/i386
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-12-16 00:18:40 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-16 07:43:19 +0100
commit4e639015436ec69fc161da2eb061073701483680 (patch)
tree94193d5b2c8185c860106f59f4c87a4f351ae88f /i386
parent1e9c1fd4558f7777866ffa58ef5e26552106af0f (diff)
Quiet GCC warning about uninitialized variable
* ddb/db_command.h (db_error): Mark with attribute noreturn. * i386/i386/setjmp.h (_longjmp): Likewise.
Diffstat (limited to 'i386')
-rw-r--r--i386/i386/setjmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/setjmp.h b/i386/i386/setjmp.h
index 80f0f5f..930a9dd 100644
--- a/i386/i386/setjmp.h
+++ b/i386/i386/setjmp.h
@@ -35,6 +35,6 @@ typedef struct jmp_buf {
extern int _setjmp(jmp_buf_t*);
-extern void _longjmp(jmp_buf_t*, int);
+extern void _longjmp(jmp_buf_t*, int) __attribute__ ((noreturn));
#endif /* _I386_SETJMP_H_ */