shithub: front

ref: 934d81ae4e55fb48f7d15ee7302d455f3ba33a82
dir: /sys/src/libc/port/rand.c/

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

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