shithub: riscv

ref: 480ce0314ee6338644bc202aa68c13c06b1846ce
dir: /sys/src/libc/port/rand.c/

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

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