shithub: riscv

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

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

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