]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/closeall.c
Whitespace cleanups.
[pdclib] / functions / _PDCLIB / closeall.c
index 3523f8c0fe5013f34f625abbd0146ff9627e25df..3c928e747322eb44e018a68003e86c555b533e35 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _PDCLIB_closeall( void )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -8,6 +6,8 @@
 
 #include <stdio.h>
 
+#ifndef REGTEST
+
 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
 
 void _PDCLIB_closeall( void )
@@ -22,14 +22,16 @@ void _PDCLIB_closeall( void )
     }
 }
 
+#endif
+
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
-    TESTCASE( NO_TESTDRIVER );
+    /* No testdriver */
     return TEST_RESULTS;
 }
 
 #endif
-