shithub: drawterm

ref: 445b6293d60eb6ebd6d361596cbbc92eb8e81dc8
dir: /libc/rand.c/

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

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