shithub: drawterm

ref: c4ea4d299aa1bbbcc972c04adf06c18245ce7674
dir: /libc/rand.c/

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

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