shithub: riscv

ref: 7dee88ec33e281ae3771e95b6dfe35e9f6ce4fd4
dir: /sys/src/libc/port/rand.c/

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

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