shithub: drawterm

ref: 0fbac08cd028f95c5f5e99e3f3dfd27a2f2858ab
dir: /libc/rand.c/

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

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