shithub: riscv

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

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

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