]> pd.if.org Git - pdclib.old/blobdiff - functions/_PDCLIB/prepwrite.c
* Test cleanups: surround the code for all functions by #ifndef REGTEST
[pdclib.old] / functions / _PDCLIB / prepwrite.c
index 774aeb21b29722917a3b18d2a41f9e75d75f7c5a..1b1c4b526eecceee5105e9ef544aa761d2928bcc 100644 (file)
@@ -7,18 +7,36 @@
 */
 
 #include <stdio.h>
+#include <errno.h>
 
+#ifndef REGTEST
 int _PDCLIB_prepwrite( struct _PDCLIB_file_t * stream )
 {
     if ( ( stream->bufidx < stream->bufend ) || ( stream->ungetidx > 0 ) ||
          ( stream->status & ( _PDCLIB_FREAD | _PDCLIB_ERRORFLAG | _PDCLIB_WIDESTREAM | _PDCLIB_EOFFLAG ) ) ||
          ! ( stream->status & ( _PDCLIB_FWRITE | _PDCLIB_FAPPEND | _PDCLIB_FRW ) ) )
     {
-        _PDCLIB_errno = _PDCLIB_EIO;
+        /* Function called on illegal (e.g. input) stream.
+           See the comments on implementation-defined errno values in
+           <_PDCLIB_config.h>.
+        */
+        errno = EINVAL;
         stream->status |= _PDCLIB_ERRORFLAG;
         return EOF;
     }
     stream->status |= _PDCLIB_FWRITE | _PDCLIB_BYTESTREAM;
     return 0;
 }
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    /* Testing covered by ftell.c */
+    return TEST_RESULTS;
+}
+
+#endif