|
@@ -44,11 +44,13 @@ typedef struct
|
|
} __jmp_buf[1];
|
|
} __jmp_buf[1];
|
|
#endif
|
|
#endif
|
|
|
|
|
|
-#define JB_SIZE (4 * 15)
|
|
+#if defined __USE_MISC || defined _ASM
|
|
|
|
+# define JB_SIZE (4 * 15)
|
|
|
|
+#endif
|
|
|
|
|
|
/* Test if longjmp to JMPBUF would unwind the frame
|
|
/* Test if longjmp to JMPBUF would unwind the frame
|
|
containing a local variable at ADDRESS. */
|
|
containing a local variable at ADDRESS. */
|
|
#define _JMPBUF_UNWINDS(jmpbuf, address) \
|
|
#define _JMPBUF_UNWINDS(jmpbuf, address) \
|
|
- ((void *) (address) < &(jmpbuf)[0].__regs[7])
|
|
+ ((void *) (address) < (void *) &(jmpbuf)[0].__regs[7])
|
|
|
|
|
|
#endif /* bits/setjmp.h */
|
|
#endif /* bits/setjmp.h */
|