shithub: riscv

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

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

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