shithub: riscv

ref: 38c2cdf164f0cc12db65f9f51b3b4a7815543d12
dir: /sys/src/libc/port/rand.c/

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

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