git: 9front

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

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

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