shithub: riscv

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

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

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