code: drawterm

ref: 503427f331de76555b9eeab1284bb423211400dd
dir: /libc/rand.c/

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

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