shithub: drawterm

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

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

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