shithub: drawterm

ref: 43866763e399e223a6e9b6f16e0c09bb16be19fa
dir: /libc/rand.c/

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

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