shithub: drawterm-fdroid

ref: 43b112897a64086ff0cf834c8dbe8281229a402c
dir: /libc/rand.c/

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

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