shithub: drawterm

ref: 9fc8db1c35ac193cfff906149b9a66ae7e8fe5ab
dir: /libc/rand.c/

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

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