code: drawterm

ref: 3c84c725ef4bd925be08518cce59161edf905ca6
dir: /libc/rand.c/

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

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