shithub: drawterm

ref: 9f46d48804714b234079e3ee463d473391d726be
dir: /libc/rand.c/

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

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