shithub: drawterm

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

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

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