git: 9front

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

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

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