summaryrefslogtreecommitdiff
path: root/i386/i386
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-12-05 22:02:56 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-08 23:44:45 +0900
commit8381f5f290482bce338188ede71499e616f1b6f2 (patch)
tree478f83a59d6a43eba75c4093a1aa30620ead3083 /i386/i386
parentc86c2d084dbd8c004eaf9c81e2bf712a4318466c (diff)
i386/i386/setjmp.h: remove ifdef
Function _longjmp() is used even if __GNUC__ is not defined. Avoid implicit declaration in that case by removing the ifdef. * i386/i386/setjmp.h [__GNUC__] (_longjmp): Remove ifdef.
Diffstat (limited to 'i386/i386')
-rw-r--r--i386/i386/setjmp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/i386/i386/setjmp.h b/i386/i386/setjmp.h
index 5c43d40..80f0f5f 100644
--- a/i386/i386/setjmp.h
+++ b/i386/i386/setjmp.h
@@ -35,8 +35,6 @@ typedef struct jmp_buf {
extern int _setjmp(jmp_buf_t*);
-#ifdef __GNUC__
extern void _longjmp(jmp_buf_t*, int);
-#endif
#endif /* _I386_SETJMP_H_ */