shithub: riscv

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

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

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