shithub: riscv

ref: 93117262c2e377d9d4f1588924032d1b69e7e2f9
dir: /sys/src/libc/port/rand.c/

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

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