shithub: tlsclient

ref: 74e7f66c51dcc51fe59314c2588a8b5109da4971
dir: /libc/rand.c/

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

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