git: 9front

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

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

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