Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setjmp.h « include « i386 « machine « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f080c3d9f6ecbc6c3ad0f87f4c9006bcc1b6abf4 (plain)
1
2
3
4
5
6
#define _JBLEN	9
typedef	long __jmp_buf[_JBLEN];

#define SP_INDEX 7
#define _JMPBUF_UNWINDS(buf, address) \
  ((void *)(address) < (void *)(buf)[SP_INDEX])