shithub: tlsclient

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

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

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