From: Guillem Jover Date: Thu, 27 Jul 2023 11:51:36 +0000 (+0200) Subject: build: Do not provide prototypes for arc4random() on Solaris X-Git-Tag: 0.11.8~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0d8d0197f2d7bedaf02b5ef1ab0db20b61c9588;p=thirdparty%2Flibbsd.git build: Do not provide prototypes for arc4random() on Solaris These functions are provided by the system. --- diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h index 51c58e8..e404bdb 100644 --- a/include/bsd/stdlib.h +++ b/include/bsd/stdlib.h @@ -51,7 +51,7 @@ #include __BEGIN_DECLS -#if !defined(__APPLE__) +#if !defined(__APPLE__) && !defined(__sun) #if !defined(__GLIBC__) || \ !__GLIBC_PREREQ(2, 36) || \ !defined(_DEFAULT_SOURCE)