shithub: riscv

ref: 0d3c3ba93506094d0360df9d10c4b787218e59dc
dir: /sys/src/libc/port/rand.c/

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

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