shithub: riscv

ref: 2dbdfe8ac73be7468e6dacc03ecf64549ed48aba
dir: /sys/src/libc/port/rand.c/

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

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