]> pd.if.org Git - pdclib/blobdiff - functions/stdio/rename.c
Comment cleanups.
[pdclib] / functions / stdio / rename.c
index 409005f933776055198186e34713cf6f1ab9bd3f..a3583e67571bd8b72b20f992aed6ebcc73ed1d55 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* rename( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -73,8 +71,8 @@ int main( void )
     /* NOREG as glibc overwrites existing destination file. */
     TESTCASE_NOREG( rename( testfile1, testfile2 ) == -1 );
     /* remove both files */
-    remove( testfile1 );
-    remove( testfile2 );
+    TESTCASE( remove( testfile1 ) == 0 );
+    TESTCASE( remove( testfile2 ) == 0 );
     /* check that they're gone */
     TESTCASE( fopen( testfile1, "r" ) == NULL );
     TESTCASE( fopen( testfile2, "r" ) == NULL );