shithub: drawcpu

ref: 4f64a0294ee182f54c5ec341ab13163f43038af0
dir: /libc/rand.c/

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

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