shithub: riscv

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

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

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