X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fsetvbuf.c;h=8754727056f84b7e4cbf0b0cdcd3094f79339ed6;hp=e3f9278aed159a316ab9e3da1883ff52ee12767e;hb=0e35e82c5e9a0804864839e8fc0e985b1ae41f07;hpb=4fe88a1c445105a96d08b808831d6fc7480a211d diff --git a/functions/stdio/setvbuf.c b/functions/stdio/setvbuf.c index e3f9278..8754727 100644 --- a/functions/stdio/setvbuf.c +++ b/functions/stdio/setvbuf.c @@ -11,8 +11,9 @@ #include #ifndef REGTEST +#include <_PDCLIB_io.h> -int setvbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf, int mode, size_t size ) +int setvbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf, int mode, size_t size ) { switch ( mode ) { @@ -71,9 +72,10 @@ int setvbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_res #ifdef TEST #include <_PDCLIB_test.h> - #include - +#ifndef REGTEST +#include <_PDCLIB_io.h> +#endif #define BUFFERSIZE 500 int main( void )