shithub: riscv

ref: 4a269a806bb86359f10385ac58c8e10cecd0a0b3
dir: /sys/src/libc/port/rand.c/

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

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