shithub: tlsclient

ref: 1483b68cc8d0b342fcff08e1ad8066f99fd32eb6
dir: /libc/rand.c/

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

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