shithub: drawterm-fdroid

ref: 333472c8c87c11eefb62cb1d5eab4472e5a8d2a9
dir: /libc/rand.c/

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

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