summaryrefslogtreecommitdiff
path: root/src/stdio/__stdout_write.c
blob: 0cf7123606ec1f69c563df4f05e19647ac02e87b (plain) (blame)
1
2
3
4
5
6
7
8
9
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);
}