git: 9front

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

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

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