shithub: riscv

ref: 997aa2e26ec64d794eeda982d502a20b3f04e1d6
dir: /sys/src/libc/port/rand.c/

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

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