shithub: riscv

ref: 28e362d368805ad91e0662fcc9577cb74ef13d4e
dir: /sys/src/libc/port/rand.c/

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

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