From: Guillem Jover Date: Sat, 27 Nov 2021 20:07:00 +0000 (+0100) Subject: getentropy: Add missing prototype for BSD variant X-Git-Tag: 0.11.4~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ad7570c20d2381a5e1962d9b1b813d44c080837;p=thirdparty%2Flibbsd.git getentropy: Add missing prototype for BSD variant Warned-by: gcc --- diff --git a/src/getentropy_bsd.c b/src/getentropy_bsd.c index 705f65b..551b646 100644 --- a/src/getentropy_bsd.c +++ b/src/getentropy_bsd.c @@ -26,6 +26,8 @@ #include #include +int getentropy(void *buf, size_t len); + /* * Derived from lib/libc/gen/arc4random.c from FreeBSD. */