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