]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/_Exit.c
Added no-brainer headers.
[pdclib] / platform / example / functions / _PDCLIB / _Exit.c
index 5c95fca8c03379452931b1fda5beaa6b9e38afb3..ed019ae9f12b5f78faf4fbef959dbf41523f804b 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _PDCLIB_exit( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -13,7 +11,8 @@
 #include <stdlib.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+
+#include "_PDCLIB_glue.h"
 
 extern void _exit( int status ) _PDCLIB_NORETURN;
 
@@ -25,13 +24,16 @@ void _PDCLIB_Exit( int status )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
+#ifndef REGTEST
     int UNEXPECTED_RETURN = 0;
     _PDCLIB_Exit( 0 );
     TESTCASE( UNEXPECTED_RETURN );
+#endif
     return TEST_RESULTS;
 }