shithub: front

ref: 740b766e5a9b0101225c23a5f9920d7d8b8fc67d
dir: /sys/src/libc/port/rand.c/

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

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