From: ceriel Date: Thu, 5 Feb 1987 20:56:06 +0000 (+0000) Subject: output buffer is now called _sobuf X-Git-Tag: release-5-5~4740 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c6a224a6d1b0b3b8c6614f8010acdd28d381ea1c;p=ack.git output buffer is now called _sobuf --- diff --git a/lang/cem/libcc/stdio/flushbuf.c b/lang/cem/libcc/stdio/flushbuf.c index 4208646d5..6dc918155 100644 --- a/lang/cem/libcc/stdio/flushbuf.c +++ b/lang/cem/libcc/stdio/flushbuf.c @@ -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; } }