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