shithub: riscv

ref: 306bee92e181a9c8b1cf0e746abdfcee7f246328
dir: /sys/src/libc/port/rand.c/

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

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