git: 9front

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

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

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