V7/usr/src/libc/gen/rand.c

Find at most related files.
including files from this version of Unix.

static	long	randx = 1;

srand(x)
unsigned x;
{
	randx = x;
}

rand()
{
	return(((randx = randx*1103515245 + 12345)>>16) & 077777);
}