Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/compat/sys5/rand.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

19 lines
226 B
C
Executable File

#pragma ident "@(#)rand.c 1.6 92/07/20 SMI" /* from S5R2 1.2 */
/*LINTLIBRARY*/
static long randx=1;
void
srand(x)
unsigned x;
{
randx = x;
}
int
rand()
{
return(((randx = randx * 1103515245L + 12345)>>16) & 0x7fff);
}