git: 9front

ref: 065931c87d180c3d6b7e2200b4e8a33173d4b200
dir: /sys/src/libc/port/rand.c/

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

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