shithub: drawterm-fdroid

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

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

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