shithub: riscv

ref: 945fef7ff2ca323f49a2de097e135112a30d47a7
dir: /sys/src/libc/port/rand.c/

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

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