static int old_fcntl_owner[FD_SETSIZE];
#endif /* F_SETOWN */
-/* This may also be defined in stdio,
- but if so, this does no harm,
- and using the same name avoids wasting the other one's space. */
-
-#if defined (USG)
-unsigned char _sobuf[BUFSIZ+8];
-#else
-char _sobuf[BUFSIZ];
-#endif
-
/* Initialize the terminal mode on all tty devices that are currently
open. */
}
#endif /* F_GETOWN */
-#ifdef _IOFBF
- /* This symbol is defined on recent USG systems.
- Someone says without this call USG won't really buffer the file
- even with a call to setbuf. */
- setvbuf (tty_out->output, (char *) _sobuf, _IOFBF, sizeof _sobuf);
-#else
- setbuf (tty_out->output, (char *) _sobuf);
-#endif
+ setvbuf (tty_out->output, NULL, _IOFBF, BUFSIZ);
if (tty_out->terminal->set_terminal_modes_hook)
tty_out->terminal->set_terminal_modes_hook (tty_out->terminal);