shithub: front

ref: b0d4d20a2c2dd658277e2a25e95fb52f80232f4b
dir: /sys/src/libc/port/rand.c/

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

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