From 2813b56e0162a9ce1e9ba96c2b680c34bcecf830 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Wed, 6 Jan 1999 06:56:11 +0000 Subject: toplev.h: In addition to checking _JBLEN... * toplev.h: In addition to checking _JBLEN, also check if `setjmp' is a macro when deciding if we can use `jmp_buf' in prototypes. From-SVN: r24514 --- gcc/toplev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/toplev.h') diff --git a/gcc/toplev.h b/gcc/toplev.h index c309399..5809ef0 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -56,7 +56,7 @@ extern void error_for_asm PVPROTO((struct rtx_def *, char *, ...)) ATTRIBUTE_PRINTF_2; extern void warning_for_asm PVPROTO((struct rtx_def *, char *, ...)) ATTRIBUTE_PRINTF_2; -#ifdef _JBLEN +#if defined (_JBLEN) || defined (setjmp) extern void set_float_handler PROTO((jmp_buf)); extern int push_float_handler PROTO((jmp_buf, jmp_buf)); extern void pop_float_handler PROTO((int, jmp_buf)); -- cgit v1.1