shithub: drawterm

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

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

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