shithub: riscv

ref: 474c2c8a2cfeac3058c6bed4504bb3c1715ef79a
dir: /sys/src/libc/port/rand.c/

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

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