shithub: riscv

ref: 1d9d4ffef89e883949261ec9c56c57e0344726d7
dir: /sys/src/libc/port/rand.c/

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

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