git: 9front

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

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

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