]> pd.if.org Git - pdclib/blobdiff - functions/stdio/_PDCLIB_prepwrite.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / _PDCLIB_prepwrite.c
index 1b1c4b526eecceee5105e9ef544aa761d2928bcc..fde9603fd1c4882559beff2b57c06c05a0294126 100644 (file)
@@ -1,6 +1,4 @@
-/* $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 +8,9 @@
 #include <errno.h>
 
 #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 ) ) ||
@@ -30,7 +30,7 @@ int _PDCLIB_prepwrite( struct _PDCLIB_file_t * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {