]> pd.if.org Git - pdclib/blobdiff - functions/stdio/setbuf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / setbuf.c
index fe83277586bfbca905781d63a83dbd01e444ca1a..749ddc9d2a8aeefc366505fd6c2e1ec0a6db821d 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* setbuf( FILE *, char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,7 +8,7 @@
 
 #ifndef REGTEST
 
-void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf )
+void setbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf )
 {
     if ( buf == NULL )
     {
@@ -25,8 +23,11 @@ void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_res
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <stdlib.h>
+#ifndef REGTEST
+#include "_PDCLIB_io.h"
+#endif
 
 int main( void )
 {