$OpenBSD: patch-third_party_sqlite_amalgamation_sqlite3_c,v 1.3 2019/04/17 11:48:54 robert Exp $

Index: third_party/sqlite/amalgamation/sqlite3.c
--- third_party/sqlite/amalgamation/sqlite3.c.orig
+++ third_party/sqlite/amalgamation/sqlite3.c
@@ -38903,7 +38903,12 @@ static int unixRandomness(sqlite3_vfs *NotUsed, int nB
   memset(zBuf, 0, nBuf);
   randomnessPid = osGetpid(0);
 #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS)
+#if defined(__OpenBSD__)
   {
+    arc4random_buf(zBuf, nBuf);
+  }
+#else
+  {
     int fd, got;
     fd = robust_open("/dev/urandom", O_RDONLY, 0);
     if( fd<0 ){
@@ -38918,6 +38923,7 @@ static int unixRandomness(sqlite3_vfs *NotUsed, int nB
       robust_close(0, fd, __LINE__);
     }
   }
+#endif
 #endif
   return nBuf;
 }
