shithub: drawterm

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

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

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