mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 11:41:29 +00:00
11 lines
266 B
C
11 lines
266 B
C
|
#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);
|
||
|
}
|