shithub: riscv

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

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

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