git: 9front

ref: 120c2be0bb4fb25fcaf20dde3e942563e01e7b0b
dir: /sys/src/libc/port/rand.c/

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

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