shithub: riscv

ref: 4434678e51db2c33b0eb2887ff9174c970675c55
dir: /sys/src/libc/port/rand.c/

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

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