git: 9front

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

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

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