diff options
Diffstat (limited to 'newlib/libc/stdio/fputs.c')
-rw-r--r-- | newlib/libc/stdio/fputs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/stdio/fputs.c b/newlib/libc/stdio/fputs.c index 24a108b..a32dea4 100644 --- a/newlib/libc/stdio/fputs.c +++ b/newlib/libc/stdio/fputs.c @@ -89,6 +89,7 @@ _DEFUN(_fputs_r, (ptr, s, fp), CHECK_INIT(ptr, fp); _flockfile (fp); + ORIENT (fp, -1); result = __sfvwrite_r (ptr, fp, &uio); _funlockfile (fp); return result; |