X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fremove.c;h=510a4e283c76828030c6b6e15a0be0e7f91f8e77;hb=3fa6cbea602e25c5c87eaecd866cf1e7a62e0c48;hp=ec7941b1f9f8136698134c18d3b13f79a9ad846c;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/functions/stdio/remove.c b/functions/stdio/remove.c index ec7941b..510a4e2 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( "No testing of remove() - test driver does not know internals of system function." ); +#endif return TEST_RESULTS; }