shithub: riscv

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

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

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