code: drawterm

ref: 5f074880c5c2cd8a23883271bb7e27939e769186
dir: /libc/rand.c/

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

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