shithub: riscv

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

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

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