shithub: riscv

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

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

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