summaryrefslogtreecommitdiff
path: root/Plan9/power/include/lib9.h
diff options
context:
space:
mode:
Diffstat (limited to 'Plan9/power/include/lib9.h')
-rw-r--r--Plan9/power/include/lib9.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/Plan9/power/include/lib9.h b/Plan9/power/include/lib9.h
index 4a616833..333b29f9 100644
--- a/Plan9/power/include/lib9.h
+++ b/Plan9/power/include/lib9.h
@@ -655,33 +655,3 @@ extern char *argv0;
#define setbinmode()
#undef __LITTLE_ENDIAN
-/*
- * Extensions for emu kernel emulation
- */
-#ifdef EMU
-
-extern Proc** Xup;
-#define up (*Xup)
-
-typedef struct FPU FPU;
-
-/*
- * This structure must agree with FPsave and FPrestore asm routines
- */
-typedef struct FPU FPU;
-struct FPU
-{
- double fpreg[32];
- union {
- double fpscrd;
- struct {
- ulong pad;
- ulong fpscr;
- };
- };
-};
-
-typedef jmp_buf osjmpbuf;
-#define ossetjmp(buf) setjmp(buf)
-
-#endif