ack/lang/cem/libcc/gen/rand.c
1987-07-10 09:06:19 +00:00

19 lines
236 B
C

/* $Header$ */
static long seed = 1L;
int rand()
{
seed = (1103515245L * seed + 12345) & 0x7FFFFFFF;
#if EM_WSIZE == 4
return (int) seed;
#else
return ((int)(seed >> 8) & 0x7FFF);
#endif
}
srand(n)
unsigned n;
{
seed = n;
}