]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sprintf.c
System includes -> local includes.
[pdclib] / functions / stdio / sprintf.c
index 887c6fcfa610f86c4f749fc51c63b131503fc83a..cf686dd205dafe2cde1ab552c979e633c3390ec6 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* sprintf( char *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -28,7 +26,7 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ..
 #define _PDCLIB_FILEID "stdio/sprintf.c"
 #define _PDCLIB_STRINGIO
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 #define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ )