/* _PDCLIB_exit( int ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ /* This is a stub implementation of _PDCLIB_Exit */ #include #ifndef REGTEST #include <_PDCLIB_glue.h> #include #include void _PDCLIB_Exit( int status ) { ExitProcess( status ); } #endif #ifdef TEST #include <_PDCLIB_test.h> int main( void ) { #ifndef REGTEST int UNEXPECTED_RETURN = 0; _PDCLIB_Exit( 0 ); TESTCASE( UNEXPECTED_RETURN ); #endif return TEST_RESULTS; } #endif