shithub: riscv

ref: f2b7f24e4e14099251dd0ed8e7e13d7ca466b0cf
dir: /sys/src/libc/port/rand.c/

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

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