output buffer is now called _sobuf

This commit is contained in:
ceriel 1987-02-05 20:56:06 +00:00
parent c4b53d0710
commit c6a224a6d1

View file

@ -12,9 +12,9 @@ _flushbuf(c, iop)
iop->_flags |= IO_UNBUFF;
}
else {
extern unsigned char __stdout[];
extern unsigned char _sobuf[];
iop->_buf = iop->_ptr = __stdout;
iop->_buf = iop->_ptr = _sobuf;
iop->_count = BUFSIZ;
}
}