diff options
Diffstat (limited to 'newlib/libc/sys/go32/bdosptr.c')
-rw-r--r-- | newlib/libc/sys/go32/bdosptr.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/newlib/libc/sys/go32/bdosptr.c b/newlib/libc/sys/go32/bdosptr.c deleted file mode 100644 index 214d40b..0000000 --- a/newlib/libc/sys/go32/bdosptr.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <errno.h> -#include "dos.h" - -bdosptr(int func, void *dx, unsigned al) -{ - union REGS r; - r.x.dx = dx; - r.h.ah = func; - r.h.al = al; - int86(0x21, &r, &r); - return r.x.ax; -} |