shithub: riscv

ref: 8bf367498314bc92715f0a3f00bc9a5fe915eec5
dir: /sys/src/libc/port/rand.c/

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

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