summaryrefslogtreecommitdiff
path: root/Nt/386/include/lib9.h
diff options
context:
space:
mode:
Diffstat (limited to 'Nt/386/include/lib9.h')
-rwxr-xr-xNt/386/include/lib9.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/Nt/386/include/lib9.h b/Nt/386/include/lib9.h
index c726f21e..71dbda51 100755
--- a/Nt/386/include/lib9.h
+++ b/Nt/386/include/lib9.h
@@ -464,27 +464,3 @@ extern char *argv0;
extern void setbinmode(void);
extern void* sbrk(int);
-/*
- * Extensions for emu kernel emulation
- */
-#ifdef EMU
-
-/*
- * This structure must agree with FPsave and FPrestore asm routines
- */
-typedef struct FPU FPU;
-struct FPU
-{
- uchar env[28];
-};
-
-extern void sleep(int);
-
-/* Set up private thread space */
-extern __declspec(thread) Proc* up;
-#define Sleep NTsleep
-
-typedef jmp_buf osjmpbuf;
-#define ossetjmp(buf) setjmp(buf)
-
-#endif