shithub: riscv

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

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

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