git: 9front

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

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

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