code: drawterm

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

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

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