X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Frename.c;h=66ba2b8fbfce0b0c0905f6b27166129c43121c3c;hb=d828dd855f3cb73434171fce21ea50756fec558a;hp=4a1cc850e44c1520b323cd50dbf83d27b318ccc9;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/functions/stdio/rename.c b/functions/stdio/rename.c index 4a1cc85..66ba2b8 100644 --- a/functions/stdio/rename.c +++ b/functions/stdio/rename.c @@ -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( " NOTEST rename() test driver is PDCLib-specific." ); +#endif return TEST_RESULTS; }