$OpenBSD: patch-sysdep_unix_io_c,v 1.2 2019/01/09 15:04:50 sthen Exp $
Index: sysdep/unix/io.c
--- sysdep/unix/io.c.orig
+++ sysdep/unix/io.c
@@ -278,7 +278,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;
@@ -2110,7 +2110,6 @@ io_init(void)
   init_times();
   update_times();
   boot_time = now;
-  srandom((int) now_real);
 }
 
 static int short_loops = 0;
