shithub: drawterm-fdroid

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

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

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