code: drawterm

ref: 416371c2d3ef3ca6e6d5e43433127927d53707f0
dir: /libc/rand.c/

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

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