shithub: riscv

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

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

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