shithub: drawterm

ref: 76af4ec0e6d869e8ccc2757904375daf6470bd92
dir: /libc/rand.c/

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

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