git: 9front

ref: 7c9fe270231e6061ea98c63c6de9756b6d03e1ba
dir: /sys/src/libc/port/rand.c/

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

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