code: drawterm

ref: 4ee3d8da899b4d15b6d9f537804e06c754b9fcc5
dir: /libc/rand.c/

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

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