Removed @PROGEXT@ (it was broken anyway).
[wine.git] / msdos / int20.c
blob232ad65472e5225ca94a0aeb8b6edda7ff572bbd
1 /*
2 * DOS interrupt 20h handler (TERMINATE PROGRAM)
3 */
5 #include <stdlib.h>
6 #include "winbase.h"
7 #include "miscemu.h"
8 /* #define DEBUG_INT */
9 #include "debugtools.h"
10 #include "task.h"
12 /**********************************************************************
13 * INT_Int20Handler
15 * Handler for int 20h.
17 void WINAPI INT_Int20Handler( CONTEXT86 *context )
19 ExitThread( 0 );