git: 9front

ref: 9685be04009671ea4c75613e1f2cb2b10eb9992e
dir: /sys/src/libc/port/rand.c/

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

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