date and time created 83/03/23 15:01:54 by mckusick
[unix-history] / usr / src / games / trek / ranf.c
CommitLineData
db247e8f
KM
1#ifndef lint
2static char sccsid[] = "@(#)ranf.c 4.1 (Berkeley) %G%";
3#endif not lint
4
5ranf(max)
6int max;
7{
8 register int t;
9
10 if (max <= 0)
11 return (0);
12 t = rand() >> 5;
13 return (t % max);
14}
15
16
17double franf()
18{
19 double t;
20 t = rand() & 077777;
21 return (t / 32767.0);
22}