]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/closeall.c
* Test cleanups: surround the code for all functions by #ifndef REGTEST
[pdclib] / functions / _PDCLIB / closeall.c
index 71f600790f32d944fabb47263517eb137d20d1b8..5086d0d64bb09305245cc10692cc2a291978b8a7 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 
+#ifndef REGTEST
 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
 
 void _PDCLIB_closeall( void )
@@ -21,6 +22,7 @@ void _PDCLIB_closeall( void )
         stream = next;
     }
 }
+#endif
 
 #ifdef TEST
 #include <_PDCLIB_test.h>