shithub: riscv

ref: 0cdb32cc18b953fd22e86ba6fc6e24787f254576
dir: /sys/src/libc/port/rand.c/

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

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