]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vfprintf.c
Streamlined printf testing.
[pdclib] / functions / stdio / vfprintf.c
index 2b216db9ff71b19dec53384c3ab92d2f5b762bbd..6a5a781861d3506623919fcd9fc0e67ecf6dfc5c 100644 (file)
@@ -54,7 +54,7 @@ int vfprintf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, const char * _PDC
 #include <string.h>
 #include <_PDCLIB_test.h>
 
-static int testprintf( FILE * stream, size_t n, const char * format, ... )
+static int testprintf( FILE * stream, const char * format, ... )
 {
     int i;
     va_list arg;
@@ -68,10 +68,10 @@ static int testprintf( FILE * stream, size_t n, const char * format, ... )
 
 int main( void )
 {
-    FILE * buffer;
-    TESTCASE( ( buffer = fopen( testfile, "wb" ) ) != NULL );
+    FILE * target;
+    TESTCASE( ( target = fopen( testfile, "wb" ) ) != NULL );
 #include "printf_testcases.incl"
-    TESTCASE( fclose( buffer ) == 0 );
+    TESTCASE( fclose( target ) == 0 );
 #include "fprintf_reftest.incl"
     TESTCASE( remove( testfile ) == 0 );
     return TEST_RESULTS;