shithub: tlsclient

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

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

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