]> pd.if.org Git - pdclib/blobdiff - functions/stdio/remove.c
Further output beautification.
[pdclib] / functions / stdio / remove.c
index ec7941b1f9f8136698134c18d3b13f79a9ad846c..b79ef0bcad89af05e045136e65a12d0bbfdd78f1 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* remove( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -26,7 +24,11 @@ int remove( const char * filename )
 
 int main( void )
 {
+#ifndef REGTEST
     TESTCASE( NO_TESTDRIVER );
+#else
+    puts( " NOTEST remove() test driver is PDCLib-specific." );
+#endif
     return TEST_RESULTS;
 }