git: 9front

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

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

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