code: drawterm

ref: 09820aa68b89b8c8093f2e28e088c0c8a4e10f1a
dir: /libc/rand.c/

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

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