git: 9front

ref: 6e5f4c890d749b67a3ccb301e2dfb80d04f14bcb
dir: /sys/src/cmd/unix/drawterm/libc/rand.c/

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

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