ref: 5eaaeb08c5ea01c7c0d0473c2b95462536e6bc25 dir: /libc/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; }