shithub: drawterm

ref: 94ba334d6dafc14c695e986afb33685e4e74d6eb
dir: /libc/rand.c/

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

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