shithub: drawterm-fdroid

ref: 93a43be0ea85aca12826c9d53aec0ad2a0278198
dir: /libc/rand.c/

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

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