shithub: front

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

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

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