output buffer is now called _sobuf
This commit is contained in:
parent
c4b53d0710
commit
c6a224a6d1
|
@ -12,9 +12,9 @@ _flushbuf(c, iop)
|
||||||
iop->_flags |= IO_UNBUFF;
|
iop->_flags |= IO_UNBUFF;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
extern unsigned char __stdout[];
|
extern unsigned char _sobuf[];
|
||||||
|
|
||||||
iop->_buf = iop->_ptr = __stdout;
|
iop->_buf = iop->_ptr = _sobuf;
|
||||||
iop->_count = BUFSIZ;
|
iop->_count = BUFSIZ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue