]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/_PDCLIB_Exit.c
* New feature check macro system. See _PDCLIB_aux.h for details
[pdclib] / platform / example / functions / _PDCLIB / _PDCLIB_Exit.c
diff --git a/platform/example/functions/_PDCLIB/_PDCLIB_Exit.c b/platform/example/functions/_PDCLIB/_PDCLIB_Exit.c
new file mode 100644 (file)
index 0000000..2bfc8c9
--- /dev/null
@@ -0,0 +1,36 @@
+/* $Id$ */
+
+/* _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 <stdlib.h>
+
+#ifndef REGTEST
+#include <_PDCLIB_glue.h>
+#include <errno.h>
+
+void _PDCLIB_Exit( int status )
+{
+    errno = ENOTSUP;
+}
+
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    int UNEXPECTED_RETURN = 0;
+    _PDCLIB_Exit( 0 );
+    TESTCASE( UNEXPECTED_RETURN );
+    return TEST_RESULTS;
+}
+
+#endif