From 3d1d4375317583469d416bb0970a6e903590c0b9 Mon Sep 17 00:00:00 2001 From: Dima Ruban Date: Tue, 30 Nov 1999 23:49:54 +0000 Subject: [PATCH] dummy version of read_random() until the real random driver is ported. --- sys/alpha/alpha/machdep.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index d582b14a05ba..dd357426b788 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -2109,3 +2109,12 @@ alpha_fpstate_switch(struct proc *p) p->p_md.md_flags |= MDP_FPUSED; } + +/* + * dummy version of read_random() until the random driver is ported. + */ +int +read_random() +{ + return (0); +}