code: drawterm

ref: c97fe4693f6112504d6f13fab46f7cc8b27685c1
dir: /libc/rand.c/

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

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