trampoline/lib/lib9/rand.c

8 lines
66 B
C
Raw Normal View History

#include <lib9.h>
int
p9rand(void)
{
return lrand() & 0x7fff;
}