]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/kern/subr_prf.c
xnu-6153.101.6.tar.gz
[apple/xnu.git] / bsd / kern / subr_prf.c
index ddf8e5db4aed91e230804f171bef57984f4d68ef..0d797382679639ac2ea65c5ca5c40dcd9c9bee51 100644 (file)
@@ -122,7 +122,6 @@ struct snprintf_arg {
 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 */
@@ -385,7 +384,7 @@ putchar(int c, void *arg)
                log_putc_locked(msgbufp, c);
        }
        if ((pca->flags & TOCONS) && constty == 0 && c != '\0') {
-               (*v_putc)(c);
+               cnputc(c);
        }
        if (pca->flags & TOSTR) {
                **sp = c;