shithub: riscv

ref: f34ef5a8d43bdf2728cefb12707be8ea4f2052bb
dir: /sys/src/libc/port/rand.c/

View raw version
#include	<u.h>
#include	<libc.h>

int
rand(void)
{
	return lrand() & 0x7fff;
}