shithub: drawterm

ref: e56902a661c4c62e04596b3c2c58e43ed8328590
dir: /libc/rand.c/

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

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