shithub: drawterm

ref: 8bd7505dc37201cbcb99bf4e6b48d938af64bb5b
dir: /libc/rand.c/

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

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