wine/msdos/int20.c
2001-12-04 19:54:44 +00:00

18 lines
336 B
C

/*
* DOS interrupt 20h handler (TERMINATE PROGRAM)
*/
#include <stdlib.h>
#include "winbase.h"
#include "miscemu.h"
/**********************************************************************
* INT_Int20Handler (WPROCS.132)
*
* Handler for int 20h.
*/
void WINAPI INT_Int20Handler( CONTEXT86 *context )
{
ExitThread( 0 );
}