code: drawterm

ref: 60e52edbdea4e18d7fd0b409d49aa47327b2ee59
dir: /libc/rand.c/

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

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