]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/_Exit.c
System includes -> local includes.
[pdclib] / platform / example / functions / _PDCLIB / _Exit.c
index 4cfc6660b4c659d46ec5598005998592183c2176..e9e900d3c89c8f3ed0b03953481296253e047ddc 100644 (file)
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 extern void _exit( int status ) _PDCLIB_NORETURN;
 
@@ -23,13 +23,15 @@ 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;
 }