shithub: front

ref: 2346ea488600e7e735c2275e5bcd310bbbf9810c
dir: /sys/src/libc/port/rand.c/

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

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