diff options
-rw-r--r-- | sys/alpha/alpha/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index dd35742..04707f9 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -1058,6 +1058,7 @@ alpha_init(pfn, ptb, bim, bip, biv) case 'v': case 'V': + boothowto |= RB_VERBOSE; bootverbose = 1; break; @@ -2113,8 +2114,9 @@ alpha_fpstate_switch(struct proc *p) /* * dummy version of read_random() until the random driver is ported. */ +int read_random __P((void)); int -read_random() +read_random(void) { return (0); } |