shithub: front

ref: 3bdf242555b9540f1fc6924ea7b24832fb9191fa
dir: /sys/src/libc/port/rand.c/

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

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