shithub: drawterm

ref: 4ed08f439ac547b7e1b2864efda66c297348cce9
dir: /libc/rand.c/

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

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