summaryrefslogtreecommitdiff
path: root/src/stdio/__stdout_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/__stdout_write.c')
-rw-r--r--src/stdio/__stdout_write.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdio/__stdout_write.c b/src/stdio/__stdout_write.c
new file mode 100644
index 00000000..4683ffc3
--- /dev/null
+++ b/src/stdio/__stdout_write.c
@@ -0,0 +1,10 @@
+#include "stdio_impl.h"
+
+size_t __stdout_write(FILE *f, const unsigned char *buf, size_t len)
+{
+ struct termios tio;
+ f->write = __stdio_write;
+ if (!(f->flags & F_SVB) && syscall(SYS_ioctl, f->fd, TCGETS, &tio))
+ f->lbf = -1;
+ return __stdio_write(f, buf, len);
+}