shithub: riscv

ref: 956a50e8c5b92bb5cdead2d725f6fced6e4e231e
dir: /sys/src/libc/port/rand.c/

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

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