shithub: tlsclient

ref: 0c24162f1cb4527560a11223645d34f3791dc5a4
dir: /libc/rand.c/

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

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