plan9port/src/lib9/rand.c

8 lines
66 B
C
Raw Normal View History

2003-09-30 17:47:41 +00:00
#include <lib9.h>
int
2004-12-29 01:30:19 +00:00
p9rand(void)
2003-09-30 17:47:41 +00:00
{
return lrand() & 0x7fff;
}