aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/fwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/fwrite.c')
-rw-r--r--newlib/libc/stdio/fwrite.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/newlib/libc/stdio/fwrite.c b/newlib/libc/stdio/fwrite.c
index dc21805..595e3ef 100644
--- a/newlib/libc/stdio/fwrite.c
+++ b/newlib/libc/stdio/fwrite.c
@@ -103,6 +103,7 @@ _DEFUN(_fwrite_r, (ptr, buf, size, count, fp),
FILE * fp)
{
size_t n;
+#ifdef _FVWRITE_IN_STREAMIO
struct __suio uio;
struct __siov iov;
@@ -128,6 +129,30 @@ _DEFUN(_fwrite_r, (ptr, buf, size, count, fp),
}
_newlib_flockfile_end (fp);
return (n - uio.uio_resid) / size;
+#else
+ size_t i = 0;
+ _CONST char *p = buf;
+ n = count * size;
+ CHECK_INIT (ptr, fp);
+
+ _newlib_flockfile_start (fp);
+ ORIENT (fp, -1);
+ /* Make sure we can write. */
+ if (cantwrite (ptr, fp))
+ goto ret;
+
+ while (i < n)
+ {
+ if (__sputc_r (ptr, p[i], fp) == EOF)
+ break;
+
+ i++;
+ }
+
+ret:
+ _newlib_flockfile_end (fp);
+ return i / size;
+#endif
}
#ifndef _REENT_ONLY