]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fprintf.c
Tyndur tests
[pdclib] / functions / stdio / fprintf.c
index 62bff89cc12c451ef9520db8f86d5c595cfb8892..e16adf8605025d4b5425d2c324bc34454ac47191 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* fprintf( FILE *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -24,12 +22,14 @@ int fprintf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, const char * _PDCL
 #endif
 
 #ifdef TEST
+#include <stdint.h>
+#include <stddef.h>
 #define _PDCLIB_FILEID "stdio/fprintf.c"
 #define _PDCLIB_FILEIO
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-#define testprintf( stream, format, ... ) fprintf( stream, format, __VA_ARGS__ )
+#define testprintf( stream, ... ) fprintf( stream, __VA_ARGS__ )
 
 int main( void )
 {
@@ -41,4 +41,3 @@ int main( void )
 }
 
 #endif
-