Merge pull request #3571 from gufe44/arc4random_buf-implicit

NetBSD/OpenBSD symbol availability fix
This commit is contained in:
Gilles Peskine 2020-11-12 12:12:49 +01:00 committed by GitHub
commit 9f4a01c33c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,3 @@
Bugfix
* Make arc4random_buf available on NetBSD and OpenBSD when _POSIX_C_SOURCE is
defined. Fix contributed in #3571.

View File

@ -22,6 +22,15 @@
* limitations under the License.
*/
/*
* for arc4random_buf() from <stdlib.h>
*/
#if defined(__NetBSD__)
#define _NETBSD_SOURCE 1
#elif defined(__OpenBSD__)
#define _BSD_SOURCE 1
#endif
#include <test/macros.h>
#include <test/random.h>
#include <string.h>