]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/sprintf.c
PDCLIB-6: Incorporate the Tyndur test suite into our printf test suite (see included...
[pdclib.old] / functions / stdio / sprintf.c
index 887c6fcfa610f86c4f749fc51c63b131503fc83a..4f4a5d4a37a609b3b0ab89ff94dff4ef26067945 100644 (file)
@@ -30,7 +30,7 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ..
 
 #include <_PDCLIB_test.h>
 
-#define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ )
+#define testprintf( s, ... ) sprintf( s, __VA_ARGS__ )
 
 int main( void )
 {