shithub: riscv

ref: 3e22f7ef1d56efcc81e7ce0e74bc1992ef0976a8
dir: /sys/src/libc/port/rand.c/

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

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