X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_prepwrite.c;h=48440e737cfb932809cdfceec9f8473eb875d296;hb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;hp=1b1c4b526eecceee5105e9ef544aa761d2928bcc;hpb=702e9008178bdb5c1b123b963868c946537fb7f5;p=pdclib diff --git a/functions/stdio/_PDCLIB_prepwrite.c b/functions/stdio/_PDCLIB_prepwrite.c index 1b1c4b5..48440e7 100644 --- a/functions/stdio/_PDCLIB_prepwrite.c +++ b/functions/stdio/_PDCLIB_prepwrite.c @@ -1,6 +1,6 @@ /* $Id$ */ -/* _PDCLIB_prepwrite( struct _PDCLIB_file_t * ) +/* _PDCLIB_prepwrite( FILE * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -10,7 +10,9 @@ #include #ifndef REGTEST -int _PDCLIB_prepwrite( struct _PDCLIB_file_t * stream ) +#include <_PDCLIB_io.h> + +int _PDCLIB_prepwrite( FILE * stream ) { if ( ( stream->bufidx < stream->bufend ) || ( stream->ungetidx > 0 ) || ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||