ref: c247ce1c3301222ccd445d3479c29f7eb0e9bfc4
dir: /sys/src/libc/port/lnrand.c/
#include <u.h> #include <libc.h> #define MASK 0x7fffffffL long lnrand(long n) { long slop, v; if(n < 0) return n; slop = MASK % n; do v = lrand(); while(v <= slop); return v % n; }