--- src/lib/libc/stdlib/rand.c 2005/11/20 12:37:49 1.5 +++ src/lib/libc/stdlib/rand.c 2005/11/20 14:58:40 1.6 @@ -136,7 +136,7 @@ sranddev(void) if (!done) { struct timeval tv; - unsigned long junk; + unsigned long junk; /* XXX left uninitialized on purpose */ gettimeofday(&tv, NULL); srand((getpid() << 16) ^ tv.tv_sec ^ tv.tv_usec ^ junk);