shithub: riscv

ref: 4e61bc282c2869ae8442e356ffd2da3a3818dd51
dir: /sys/src/libc/port/rand.c/

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

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