shithub: drawterm-fdroid

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

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

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