git: 9front

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

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

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