shithub: riscv

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

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

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