git: 9front

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

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

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