conterm/libc/rand.c

9 lines
79 B
C
Raw Permalink Normal View History

2005-08-08 16:50:13 +04:00
#include <u.h>
#include <libc.h>
int
rand(void)
{
return lrand() & 0x7fff;
}