git: 9front

ref: 12c8e27a761f7bb673e1c94f5f3e3b9807bf99a6
dir: /sys/src/libc/port/rand.c/

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

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