]> pd.if.org Git - pdclib/blobdiff - functions/stdio/setvbuf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / setvbuf.c
index b07d87e3f847e32de5927b260f7c818a62571f0a..288211baefc7b5ea50e6b37ba941b503b3214f65 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* setvbuf( FILE *, char *, int, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -11,7 +9,7 @@
 #include <limits.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 int setvbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf, int mode, size_t size )
 {
@@ -76,10 +74,10 @@ int setvbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf, int mo
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <errno.h>
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 #endif
 #define BUFFERSIZE 500