shithub: riscv

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

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

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