shithub: drawterm-fdroid

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

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

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