]> pd.if.org Git - pdclib/blob - platform/win32/functions/_PDCLIB/_PDCLIB_Exit.c
Cosmetic comment fixes.
[pdclib] / platform / win32 / functions / _PDCLIB / _PDCLIB_Exit.c
1 /* _PDCLIB_Exit( int )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdlib.h>
8
9 #ifndef REGTEST
10 #include "_PDCLIB_glue.h"
11 #include <errno.h>
12 #include <windows.h>
13
14 void _PDCLIB_Exit( int status )
15 {
16     ExitProcess( status );
17 }
18
19 #endif
20
21 #ifdef TEST
22 #include "_PDCLIB_test.h"
23
24 int main( void )
25 {
26 #ifndef REGTEST
27     int UNEXPECTED_RETURN = 0;
28     _PDCLIB_Exit( 0 );
29     TESTCASE( UNEXPECTED_RETURN );
30 #endif
31     return TEST_RESULTS;
32 }
33
34 #endif