shithub: riscv

ref: 5d78632d416debbe588b64ace5f483b47d928ed3
dir: /sys/src/libc/port/rand.c/

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

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