shithub: riscv

ref: 4e015eb5c7ba7ae1cb7b2e26997a7ba0eb02b626
dir: /sys/src/libc/port/rand.c/

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

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