ref: 022532e3e74a94ff9a194378c5a9f7a4904d82d3
dir: /libc/src/rand.c/
/* See LICENSE file for copyright and license details. */ #include <stdlib.h> 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; }