shithub: drawterm

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

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

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