git: 9front

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

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

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