shithub: riscv

ref: 3932622c292dbf4ce5f65fa2a6fb6b3a3c77f174
dir: /sys/src/libc/port/rand.c/

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

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