extern const char *debugger_panic_str;
extern void cnputc(char); /* standard console putc */
-void (*v_putc)(char) = cnputc; /* routine to putc on virtual console */
extern struct tty cons; /* standard console tty */
extern struct tty *constty; /* pointer to console "window" tty */
log_putc_locked(msgbufp, c);
}
if ((pca->flags & TOCONS) && constty == 0 && c != '\0') {
- (*v_putc)(c);
+ cnputc(c);
}
if (pca->flags & TOSTR) {
**sp = c;