shithub: riscv

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

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

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