code: drawterm

ref: 37ef30916cf30b47f92cf8f815caa23424263a5a
dir: /libc/rand.c/

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

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