plan9port/src/lib9/rand.c
2004-12-29 01:30:19 +00:00

7 lines
66 B
C

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