shithub: drawterm

ref: 7ccc433d64fe03965debb1b4950e1bd23654b1fa
dir: /libc/rand.c/

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

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