X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fremove.c;h=510a4e283c76828030c6b6e15a0be0e7f91f8e77;hb=8130f23f1b48ba7fc0d22365bb38dcd396144911;hp=0318c21d7cbeef2cf81049db8658447dc46d11f7;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/stdio/remove.c b/functions/stdio/remove.c index 0318c21..510a4e2 100644 --- a/functions/stdio/remove.c +++ b/functions/stdio/remove.c @@ -24,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; }