X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffreopen.c;h=3765b2b8d99c35119f31a89e6246fe5e0042fe2a;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=2d900fd510dfeab1cc26ca1ea9d046bef2b10f78;hpb=d451ae8a715aa5fe6f2fb6f4d2494b11f4d11f2f;p=pdclib diff --git a/functions/stdio/freopen.c b/functions/stdio/freopen.c index 2d900fd..3765b2b 100644 --- a/functions/stdio/freopen.c +++ b/functions/stdio/freopen.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* freopen( const char *, const char *, FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -96,8 +94,8 @@ int main( void ) TESTCASE( fclose( fin ) == 0 ); TESTCASE( fclose( fout ) == 0 ); - remove( testfile1 ); - remove( testfile2 ); + TESTCASE( remove( testfile1 ) == 0 ); + TESTCASE( remove( testfile2 ) == 0 ); return TEST_RESULTS; }