shithub: riscv

ref: 204a96f163641de8ebca76a0b0873412b3b333aa
dir: /sys/src/libc/port/rand.c/

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

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