Make FIXMEs more grep-able.
[wine] / msdos / int20.c
1 /*
2  * DOS interrupt 20h handler (TERMINATE PROGRAM)
3  */
4
5 #include <stdlib.h>
6 #include "winbase.h"
7 #include "miscemu.h"
8
9 /**********************************************************************
10  *          INT_Int20Handler (WPROCS.132)
11  *
12  * Handler for int 20h.
13  */
14 void WINAPI INT_Int20Handler( CONTEXT86 *context )
15 {
16     ExitThread( 0 );
17 }