shithub: tlsclient

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

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

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