0.8.21.49: Fixes for OS X 10.4 "Tiger"
[sbcl.git] / src / runtime / ppc-darwin-os.h
1 #ifndef _PPC_DARWIN_OS_H
2 #define _PPC_DARWIN_OS_H
3
4 static inline os_context_t *arch_os_get_context(void **void_context) {
5     return (os_context_t *) *void_context;
6 }
7
8 #define DARWIN_FIX_CONTEXT(c) (c->uc_mcontext->ss.xer)^=0x80;
9 #endif /* _PPC_DARWIN_OS_H */