The following reply was made to PR config/977; it has been noted by GNATS. From: Marc Slemko <[EMAIL PROTECTED]> To: Apache bugs database <[EMAIL PROTECTED]> Subject: Re: config/977: Won't compile - http_main.c:158: syntax error before `jmpbuffer' \n http_main.c:158: warning: data definition has no type or storage class (fwd) Date: Sat, 16 Aug 1997 13:54:33 -0600 (MDT)
---------- Forwarded message ---------- Date: Thu, 7 Aug 1997 13:32:38 -0600 (MDT) From: Chris Craft <[EMAIL PROTECTED]> To: Marc Slemko <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: config/977: Won't compile - http_main.c:158: syntax error before `jmpbuffer' \n http_main.c:158: warning: data definition has no type or storage class The setjmp manpage gives the following on includes and function prototypes: #include <setjmp.h> int sigsetjmp(sigjmp_buf env, int savemask) void siglongjump(sigjmp_buf env, int val) int setjmp(jmp_buf env) void longjmp(jmp_buf env, int val) int _setjmp(jmp_buf env) void _longjmp(jmp_buf env, int val) void longjmperror(void) setjmp.h includes <machine/setjmp.h> and defines #ifndef _ANSI_SOURCE typedef long sigjmp_buf[_JBLEN+1]; #endif /* not ANSI */ typedef long jmp_buf[_JBLEN] then includes <sys/cdefs.h> and goes on with the declarations. -Chris.
