shithub: drawcpu

ref: fe54357c8428219c5a27c4cbbebc8d49cc29bdf7
dir: /libc/rand.c/

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

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