]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/remove.c
Disabled regtests for functionality internal to PDCLib.
[pdclib.old] / functions / stdio / remove.c
index ec7941b1f9f8136698134c18d3b13f79a9ad846c..510a4e283c76828030c6b6e15a0be0e7f91f8e77 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( "No testing of remove() - test driver does not know internals of system function." );
+#endif
     return TEST_RESULTS;
 }