shithub: drawterm

ref: 50eb08d17f61e75a862679e6d8c1511fd93d333f
dir: /libc/rand.c/

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

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