]> pd.if.org Git - pdclib/blobdiff - functions/stdio/setbuf.c
Comment cleanups.
[pdclib] / functions / stdio / setbuf.c
index 46db8e3374c109a92494b705e042635db67347a7..a2535783e2bebcde6374041e2a3afa5443585999 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* setbuf( FILE *, char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -34,21 +32,18 @@ int main( void )
 #ifndef REGTEST
     char buffer[ BUFSIZ + 1 ];
     FILE * fh;
-    remove( testfile );
     /* full buffered */
-    TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL );
+    TESTCASE( ( fh = tmpfile() ) != NULL );
     setbuf( fh, buffer );
     TESTCASE( fh->buffer == buffer );
     TESTCASE( fh->bufsize == BUFSIZ );
     TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IOFBF );
     TESTCASE( fclose( fh ) == 0 );
-    TESTCASE( remove( testfile ) == 0 );
     /* not buffered */
-    TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL );
+    TESTCASE( ( fh = tmpfile() ) != NULL );
     setbuf( fh, NULL );
     TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF );
     TESTCASE( fclose( fh ) == 0 );
-    TESTCASE( remove( testfile ) == 0 );
 #else
     puts( " NOTEST setbuf() test driver is PDCLib-specific." );
 #endif