shithub: plan9front

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

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

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