shithub: tlsclient

ref: 80cf8cd0acd5039d149bc86d640b1c2eca7a1f19
dir: /libc/rand.c/

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

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