Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-05-01 22:18:25 +0400
committerJeff Johnston <jjohnstn@redhat.com>2001-05-01 22:18:25 +0400
commitb09e3cf8fdb7927bc14af200b418841ebbae070d (patch)
treef168b58a913e7f9c977278c97d583e5e5e213b3a /newlib/libc/stdio
parentedcd155ce6612e705858722e7c97a89eb6e76289 (diff)
2001-05-01 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/findfp (__sinit)[HAVE_FCNTL]: For platforms that have real file systems, let __smakebuf() determine if line buffering should be used for stdout.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/findfp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/newlib/libc/stdio/findfp.c b/newlib/libc/stdio/findfp.c
index 64abb1c6b..c6790c491 100644
--- a/newlib/libc/stdio/findfp.c
+++ b/newlib/libc/stdio/findfp.c
@@ -152,7 +152,16 @@ __sinit (s)
s->__sdidinit = 1;
std (s->__sf + 0, __SRD, 0, s);
+
+ /* on platforms that have true file system I/O, we can verify whether stdout
+ is an interactive terminal or not. For all other platforms, we will
+ default to line buffered mode here. */
+#ifdef HAVE_FCNTL
+ std (s->__sf + 1, __SWR, 1, s);
+#else
std (s->__sf + 1, __SWR | __SLBF, 1, s);
+#endif
+
std (s->__sf + 2, __SWR | __SNBF, 2, s);
s->__sglue._next = NULL;