shithub: drawterm

ref: 525ffef137e7ce97e8e149f55488a9f5327b55c8
dir: /libc/rand.c/

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

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