shithub: front

ref: 96e9f3707cdc0b76e019f444c24869fecc7b5a21
dir: /sys/src/libc/port/rand.c/

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

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