X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/ca67e7b465996afb3821d6a075c4dc6a7f0f5d52..1c15e88899094343f75aeba04122cd96a96b428e:/usr/src/sys/vaxstand/prf.c diff --git a/usr/src/sys/vaxstand/prf.c b/usr/src/sys/vaxstand/prf.c index 60965ac6db..d094f084f8 100644 --- a/usr/src/sys/vaxstand/prf.c +++ b/usr/src/sys/vaxstand/prf.c @@ -3,7 +3,7 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)prf.c 7.5 (Berkeley) 6/6/88 + * @(#)prf.c 7.6 (Berkeley) 8/27/88 */ #include "param.h" @@ -115,7 +115,7 @@ putchar(c) register c; { register s, timo; -#if VAX630 +#if VAX630 || VAX650 extern (*v_putc)(); if (v_putc) { @@ -147,7 +147,7 @@ putchar(c) getchar() { register c; -#if VAX630 +#if VAX630 || VAX650 extern (*v_getc)(); if (v_getc) { @@ -157,7 +157,7 @@ getchar() while((mfpr(RXCS)&RXCS_DONE) == 0) ; c = mfpr(RXDB)&0177; -#if VAX630 +#if VAX630 || VAX650 } #endif if (c=='\r')