shithub: front

ref: 69cd42bb94c4454c8478eae8a61c5fec9e16ebb7
dir: /sys/src/libc/port/rand.c/

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

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