$OpenBSD: patch-sysdep_unix_io_c,v 1.1 2014/07/09 23:14:21 sthen Exp $
--- sysdep/unix/io.c.orig	Wed Jul  9 23:59:51 2014
+++ sysdep/unix/io.c	Thu Jul 10 00:01:56 2014
@@ -261,7 +261,7 @@ tm_start(timer *t, unsigned after)
   bird_clock_t when;
 
   if (t->randomize)
-    after += random() % (t->randomize + 1);
+    after += arc4random_uniform(t->randomize + 1);
   when = now + after;
   if (t->expires == when)
     return;
@@ -1826,7 +1826,6 @@ io_init(void)
   init_times();
   update_times();
   boot_time = now;
-  srandom((int) now_real);
 }
 
 static int short_loops = 0;
