summaryrefslogtreecommitdiff
path: root/libc/include/dos.h
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1999-01-23 13:29:22 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:40:39 +0200
commite62b35169cdcd13632ae353b1e5ffde7dec44201 (patch)
tree2646548ca84edb365354a6e68459f92943532cee /libc/include/dos.h
parent2233d47f9d89c107b6c425626d6eb2669363b055 (diff)
downloaddev86-0.14.7.tar.gz
Import Dev86src-0.14.7.tar.gzv0.14.7
Diffstat (limited to 'libc/include/dos.h')
-rw-r--r--libc/include/dos.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/libc/include/dos.h b/libc/include/dos.h
index d67e27f..4ff9e6e 100644
--- a/libc/include/dos.h
+++ b/libc/include/dos.h
@@ -2,17 +2,7 @@
#ifndef __DOS_H
#define __DOS_H
#include <features.h>
-
-union REGS
-{
- struct { unsigned int ax, bx, cx, dx, si, di, cflag; } x;
- struct { unsigned char al, ah, bl, bh, cl, ch, dl, dh; } h;
-};
-
-struct SREGS
-{
- unsigned int es, cs, ss, ds;
-};
+#include <bios.h>
#ifdef __MSDOS__
extern unsigned int __envseg;
@@ -24,14 +14,5 @@ void __setvect __P((int i, long j));
long __getvect __P((int vecno));
#endif
-unsigned int __get_cs __P((void));
-unsigned int __get_ds __P((void));
-unsigned int __get_es __P((void));
-void __set_es __P((unsigned int seg));
-int __peek_es __P((unsigned int off));
-int __deek_es __P((unsigned int off));
-
-#define movedata __movedata
-
#endif