shithub: riscv

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

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

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