code: drawterm

ref: 850af54157f2fd111576750e2028435de05dbf5f
dir: /libc/rand.c/

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

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