git: 9front

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

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

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