git: 9front

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

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

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