]> pd.if.org Git - pdclib/blobdiff - functions/stdio/freopen.c
Comment cleanups.
[pdclib] / functions / stdio / freopen.c
index 2d900fd510dfeab1cc26ca1ea9d046bef2b10f78..3765b2b8d99c35119f31a89e6246fe5e0042fe2a 100644 (file)
@@ -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;
 }