]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sscanf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / sscanf.c
index bf0ea5599c7d80f618d72736ba052a65b2930eb5..5de77ae45c7a28745de7c8a5e56cc8cd5a1f8460 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* sscanf( const char *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -27,7 +25,7 @@ int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict forma
 #define _PDCLIB_FILEID "stdio/sscanf.c"
 #define _PDCLIB_STRINGIO
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 #define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )