Simple jmpbuf for powerpc.
Added: branches/powerpc/reactos/include/wine/ppc_jmpbuf.h
_____
Added: branches/powerpc/reactos/include/wine/ppc_jmpbuf.h
--- branches/powerpc/reactos/include/wine/ppc_jmpbuf.h 2005-04-23
04:19:35 UTC (rev 14756)
+++ branches/powerpc/reactos/include/wine/ppc_jmpbuf.h 2005-04-23
04:31:11 UTC (rev 14757)
@@ -0,0 +1,11 @@
+#ifndef PPC_JMPBUF_H
+#define PPC_JMPBUF_H
+
+/* Derived from ppc grub */
+typedef struct sigjmp_buf {
+ unsigned long r1;
+ unsigned long locals[32-14];
+ unsigned long LR, CR;
+} sigjmp_buf;
+
+#endif/*PPC_JMPBUF_H*/