code: drawterm

ref: 6f175d289e57bf447640255d484f411f631195be
dir: /libc/rand.c/

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

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