shithub: drawterm

ref: 2772e2cd2fe99d7ceb592e1c6bbad7ab414373e5
dir: /libc/rand.c/

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

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