shithub: riscv

ref: 82c7251dc3ff57ae97c0ce24b72e2e2ae5f6945b
dir: /sys/src/libc/port/rand.c/

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

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