dummy version of read_random() until the real random driver is ported.

This commit is contained in:
Dima Ruban 1999-11-30 23:49:54 +00:00
parent 58387d7595
commit 3d1d437531

View File

@ -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);
}