shithub: riscv

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

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

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