git: drawterm

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

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

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