ref: 0abc10c55a5366e6fdad4c775e5f18b39c14eec6
dir: /src/libc/stdlib/rand.c/
#include <stdlib.h> #undef rand #undef srand static unsigned long 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; }