shithub: drawterm

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

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

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