2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
12 # if defined(__GLIBC__) && (__GLIBC__ >= 2)
13 # define SP(env) ((APTR)(env[0].__jmpbuf[JB_GPR1]))
14 # define FP(env) (((APTR *)(env[0].__jmpbuf[JB_GPR1]))[0])
15 # define PC(env) ((APTR)(env[0].__jmpbuf[JB_LR]))
17 # define SP(env) ((APTR)(env[0].__sp))
18 # define FP(env) ((APTR)(env[0].__bp))
19 # define PC(env) ((APTR)(env[0].__pc))
22 /* The number of stack longs that have to be copied from the old stack */
25 #endif /* !JMPDEFS_H */