]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sprintf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / sprintf.c
index 887c6fcfa610f86c4f749fc51c63b131503fc83a..ce3a7ff1054b73e7ab09665a8d41c395c629e2e9 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* sprintf( char *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -27,10 +25,11 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ..
 #ifdef TEST
 #define _PDCLIB_FILEID "stdio/sprintf.c"
 #define _PDCLIB_STRINGIO
+#include <stddef.h>
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-#define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ )
+#define testprintf( s, ... ) sprintf( s, __VA_ARGS__ )
 
 int main( void )
 {