shithub: front

ref: 1c793f2803e0eecb47a1f6e6847e3749d8fd7173
dir: /sys/src/libc/port/rand.c/

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

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