code: drawterm

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

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

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