]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vfprintf.c
Streamlined printf testing.
[pdclib] / functions / stdio / vfprintf.c
index 01c5df618cedc0021dd826ed7a4323a56b671d4c..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;
@@ -64,12 +64,14 @@ static int testprintf( FILE * stream, size_t n, const char * format, ... )
     return i;
 }
 
+#define TESTCASE_SPRINTF( x )
+
 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;