shithub: drawterm-fdroid

ref: f7c895607e99fac2f72ae283a7f6e1e52c142a69
dir: /libc/rand.c/

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

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