code: drawterm

ref: 5689c790ad6e428ad640051d399f5966c995f978
dir: /libc/rand.c/

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

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