shithub: drawcpu

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

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

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