git: 9front

ref: 6eb7e8e2b120c1511bdcf90e5b1d4e76383c7daf
dir: /sys/src/libc/port/rand.c/

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

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