shithub: riscv

ref: 1e31b342cd913bb702bd12debd8e0d44bf1d221c
dir: /sys/src/libc/port/rand.c/

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

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