shithub: drawterm

ref: 6ebf0a517b195de7f29ebc9ce817a91e5276107d
dir: /libc/rand.c/

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

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