$OpenBSD: patch-sysdep_unix_io_c,v 1.4 2016/05/06 19:56:20 sthen Exp $
--- sysdep/unix/io.c.orig	Fri Apr 29 10:13:23 2016
+++ sysdep/unix/io.c	Sun May  1 14:18:39 2016
@@ -262,7 +262,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;
@@ -2043,7 +2043,6 @@ io_init(void)
   init_times();
   update_times();
   boot_time = now;
-  srandom((int) now_real);
 }
 
 static int short_loops = 0;
