git: 9front

ref: 33e87e2fa10d3fbc53b032e759f9e206fc1ddef7
dir: /sys/src/libc/port/rand.c/

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

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