shithub: riscv

ref: 6280c0f17bf3919cf6c2506fec6edfa0a7ec10fe
dir: /sys/src/libc/port/rand.c/

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

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