3 * Provides deterministic pseudo-randomness.
9 #include <stdint.h> /* uint16_t */
13 /* Return 16-bit number pseudo-randomly generated via Linear Congruential
14 * Generator algorithm with some proven constants. Use instead of rand() to
15 * ensure portability of the same pseudo-randomness across systems.
17 extern uint16_t rrand();