shithub: scc

ref: b8e7849bb565bd5195f8232318c14a6d8fb3b599
dir: /lib/c/src/rand.c/

View raw version
#include <stdlib.h>
#undef rand

static int next;

void
srand(unsigned seed)
{
	next = seed;
}

int
rand(void)  /* RAND_MAX assumed to be 32767. */
{
	next = next * 1103515245 + 12345;
	return (unsigned)(next/65536) % 32768;
}