xref: /plan9/sys/src/libc/port/rand.c (revision 6a9fc400c33447ef5e1cda7185cb4de2c8e8010e)
1 #include	<u.h>
2 #include	<libc.h>
3 
4 int
5 rand(void)
6 {
7 	return lrand() & 0x7fff;
8 }
9