Welcome to mirror list, hosted at ThFree Co, Russian Federation.

intdosx.c « go32 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec3e9fbc24b3ac269c8859ad82131d54e00b16ef (plain)
1
2
3
4
5
6
#include <sys/dos.h>

intdosx(union REGS *in, union REGS *out, struct SREGS *seg)
{
  return int86x(0x21, in, out, seg);
}