]> pd.if.org Git - pdclib/blobdiff - functions/stdio/rename.c
Disabled regtests for functionality internal to PDCLib.
[pdclib] / functions / stdio / rename.c
index 4a1cc850e44c1520b323cd50dbf83d27b318ccc9..8e2d3e0bb0306daa0a541208e030a95cae38e8b0 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* rename( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -26,7 +24,11 @@ int rename( const char * old, const char * new )
 
 int main( void )
 {
+#ifndef REGTEST
     TESTCASE( NO_TESTDRIVER );
+#else
+    puts( "No testing of rename() - test driver does not know internals of system function." );
+#endif
     return TEST_RESULTS;
 }