From c6a224a6d1b0b3b8c6614f8010acdd28d381ea1c Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 5 Feb 1987 20:56:06 +0000 Subject: [PATCH] output buffer is now called _sobuf --- lang/cem/libcc/stdio/flushbuf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } } -- 2.34.1