5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
9 /* This is an example implementation of _PDCLIB_exit() fit for use with POSIX
16 #include <_PDCLIB_glue.h>
18 extern void _exit( int status ) _PDCLIB_NORETURN;
20 void _PDCLIB_Exit( int status )
28 #include <_PDCLIB_test.h>
32 int UNEXPECTED_RETURN = 0;
34 TESTCASE( UNEXPECTED_RETURN );