shithub: riscv

ref: 8c86e440c2f7ffb5fef72ee76009d36e64ad388a
dir: /sys/src/libc/port/rand.c/

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

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