shithub: riscv

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

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

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