X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_prepread.c;h=b0a38dbad87b3c1421950e824344b84524b38a33;hp=cf1c2dfe53b7948d0b68619021fd72a6062b9569;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=3082b97d8f2de1584430ad42671a0e056ed33be4 diff --git a/functions/stdio/_PDCLIB_prepread.c b/functions/stdio/_PDCLIB_prepread.c index cf1c2df..b0a38db 100644 --- a/functions/stdio/_PDCLIB_prepread.c +++ b/functions/stdio/_PDCLIB_prepread.c @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* _PDCLIB_prepread( struct _PDCLIB_file_t * ) +/* _PDCLIB_prepread( FILE * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -10,9 +8,9 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" -int _PDCLIB_prepread( struct _PDCLIB_file_t * stream ) +int _PDCLIB_prepread( FILE * stream ) { if ( ( stream->bufidx > stream->bufend ) || ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) || @@ -39,7 +37,7 @@ int _PDCLIB_prepread( struct _PDCLIB_file_t * stream ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {