code: drawterm

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

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

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