shithub: riscv

ref: f21719ea46e6c060cc8fadaffb41b7dfb89be62e
dir: /sys/src/cmd/unix/drawterm/libc/rand.c/

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

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