3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
7 /* This is an example implementation of _PDCLIB_exit() fit for use with POSIX
14 #include <_PDCLIB_glue.h>
16 extern void _exit( int status ) _PDCLIB_noreturn;
18 void _PDCLIB_Exit( int status )
26 #include <_PDCLIB_test.h>
31 int UNEXPECTED_RETURN = 0;
33 TESTCASE( UNEXPECTED_RETURN );