code: drawterm

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

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

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