shithub: drawterm

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

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

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