shithub: riscv

ref: 013b4983140cc2fbb7df9e3647e2e7c5d575a9dd
dir: /sys/src/libc/port/rand.c/

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

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