X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fremove.c;h=b79ef0bcad89af05e045136e65a12d0bbfdd78f1;hb=f9f9ce7e59f5e144c6506e516454f2acc26cdbeb;hp=ec7941b1f9f8136698134c18d3b13f79a9ad846c;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/stdio/remove.c b/functions/stdio/remove.c index ec7941b..b79ef0b 100644 --- a/functions/stdio/remove.c +++ b/functions/stdio/remove.c @@ -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; }