OSDN Git Service

2002-05-17 Jeff Johnston <jjohnstn@redhat.com>
[pf3gnuchains/sourceware.git] / newlib / libc / sys / linux / machine / i386 / include / setjmp.h
1 #define _JBLEN  9
2 typedef long __jmp_buf[_JBLEN];
3
4 #define SP_INDEX 7
5 #define _JMPBUF_UNWINDS(buf, address) \
6   ((void *)(address) < (void *)(buf)[SP_INDEX])