shithub: front

ref: f0ef1a4be02affea6543834b54a15df7e40fc7b3
dir: /sys/src/libc/port/rand.c/

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

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