shithub: drawterm-fdroid

ref: 3a300145dedef2e2cad9be0bf4ba2166770bc943
dir: /libc/rand.c/

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

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