shithub: plan9front

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

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

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