shithub: riscv

ref: 6f58f7fed4e6e00e6632ff9fe5bc56e75879424f
dir: /sys/src/libc/port/rand.c/

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

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