shithub: tlsclient

ref: 9fe184eb7f41fc76c2196e8d84d6f188c3469a93
dir: /libc/rand.c/

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

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