shithub: riscv

ref: 3c53420eaeeeb4a0f388d706488097e97f01632d
dir: /sys/src/libc/port/rand.c/

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

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