shithub: tlsclient

ref: 370c2a5ee086243da420e5c569b10880d85c05e2
dir: /libc/rand.c/

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

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