shithub: riscv

ref: 4e8494aad79a124f2b15ede9e7873fed46e1bb0a
dir: /sys/src/libc/port/rand.c/

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

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