shithub: drawterm-fdroid

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

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

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