shithub: drawterm-fdroid

ref: 11fecde6d0ba873506a6c89f12518b18e87e16a4
dir: /libc/rand.c/

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

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