shithub: riscv

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

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

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