shithub: riscv

ref: e9c8ef5e16b67837260b667e2f9fd2e1603f4f90
dir: /sys/src/libc/port/rand.c/

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

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