code: drawterm

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

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

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