shithub: riscv

ref: 85ffa283f67b4bd139a4e28e82f0d1c7f6c53b3b
dir: /sys/src/libc/port/rand.c/

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

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