shithub: riscv

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

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

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