shithub: front

ref: 230c75f31f8f27a589f865587bb4ea368371e5af
dir: /sys/src/libc/port/rand.c/

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

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