shithub: drawterm-fdroid

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

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

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