shithub: tlsclient

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

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

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