shithub: drawterm

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

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

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