shithub: drawcpu

ref: 6d3e368f2d0796e366d2df8ed56e3b6fe0c42182
dir: /libc/rand.c/

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

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