git: 9front

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

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

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