Files
9base/lib9/rand.c
2009-07-31 21:02:58 +01:00

8 lines
66 B
C

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