shithub: riscv

ref: 70b9c8574fb85a1c159c1fbaefe535593ad8072d
dir: /sys/src/libc/port/rand.c/

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

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