output buffer is now called _sobuf
authorceriel <none@none>
Thu, 5 Feb 1987 20:56:06 +0000 (20:56 +0000)
committerceriel <none@none>
Thu, 5 Feb 1987 20:56:06 +0000 (20:56 +0000)
lang/cem/libcc/stdio/flushbuf.c

index 4208646..6dc9181 100644 (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;
                                }
                        }