diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2021-01-18 12:41:58 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2021-01-18 12:43:05 +0900 |
commit | 6abf393e8f372464322dc0a8c2bda80f8b389acd () | |
tree | cf986bf08be5ee2470356970f76e5477c2e460a1 /random.c | |
parent | bf640bbf8cef7f4575e782e35c4588cb138890b6 (diff) |
OpenBSD has getentropy, but no sys/random.h
https://man.openbsd.org/getentropy Try to fix https://rubyci.s3.amazonaws.com/openbsd-current/ruby-master/log/20210118T023008Z.fail.html.gz ``` compiling random.c random.c:53:11: fatal error: 'sys/random.h' file not found # include <sys/random.h> ^~~~~~~~~~~~~~ 1 error generated. ```
-rw-r--r-- | random.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -50,7 +50,9 @@ #endif #if defined HAVE_GETRANDOM || defined HAVE_GETENTROPY -# include <sys/random.h> #elif defined __linux__ && defined __NR_getrandom # include <linux/random.h> #endif |