]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/open.c
Whitespace cleanups.
[pdclib] / platform / example / functions / _PDCLIB / open.c
index fc02790826c1ee913212b7670ab1f01aecbb5597..0f9d08cc25e92bdff52927f16f00b0be5745004f 100644 (file)
@@ -11,7 +11,8 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+
+#include "_PDCLIB_glue.h"
 
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -95,13 +96,15 @@ int _PDCLIB_open( char const * const filename, unsigned int mode )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 #include <stdlib.h>
 #include <string.h>
 
 int main( void )
 {
+#ifndef REGTEST
     /* This testdriver assumes POSIX, i.e. _PDCLIB_fd_t being int and being
        incremented by one on each successful open.
     */
@@ -157,8 +160,8 @@ int main( void )
     TESTCASE( _PDCLIB_close( fh ) == 0 );
     /* Cleaning up. */
     TESTCASE( remove( testfile ) == 0 );
+#endif
     return TEST_RESULTS;
 }
 
 #endif
-