blob: 1b379c09a3661aa50f51d49c597561371c2a92ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- base/rand_util.h.orig 2022-02-07 13:39:41 UTC
+++ base/rand_util.h
@@ -77,7 +77,7 @@ void RandomShuffle(Itr first, Itr last) {
std::shuffle(first, last, RandomBitGenerator());
}
-#if defined(OS_POSIX)
+#if defined(OS_POSIX) && !defined(OS_OPENBSD)
BASE_EXPORT int GetUrandomFD();
#endif
|