shithub: riscv

ref: b01b637889b587521b2f616ea469b3b64e0a7a9b
dir: /sys/src/libc/port/rand.c/

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

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