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

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

int
intdos(union REGS *in, union REGS *out)
{
  return int86(0x21, in, out);
}