From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2134) id 7101B3858436; Mon, 25 Sep 2023 22:20:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7101B3858436 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1695680443; bh=aoLu/JxZnFLm3p4R+m+371rLilJcXQfOjv6yrv1+ulw=; h=From:To:Subject:Date:From; b=DcbozmXwbcFZnKNiLoPNstVcLxye99xnsDtxRJsSD8hG367Galb3qOTivhBtWvAtJ /P7YjW+kgyLcuzC5ammGqk2hKhJuTre7Dlo78cRFuVu1auk8+aWyUg4dkHtsihm+8G cQnpvhU39ikawA5xpjKteDPV77M55vun9pd3mxMc= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jeff Johnston To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] newlib: Add missing prototype for _getentropy X-Act-Checkin: newlib-cygwin X-Git-Author: =?utf-8?q?Torbj=C3=B6rn_SVENSSON?= X-Git-Refname: refs/heads/master X-Git-Oldrev: 55485616ba2afedca05da40f5cde59ee336b9f28 X-Git-Newrev: a9e8e3d1cb8235f513f4d8434509acf287494fcf Message-Id: <20230925222043.7101B3858436@sourceware.org> Date: Mon, 25 Sep 2023 22:20:43 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Da9e8e3d1cb8= 235f513f4d8434509acf287494fcf commit a9e8e3d1cb8235f513f4d8434509acf287494fcf Author: Torbj=C3=B6rn SVENSSON Date: Mon Sep 25 20:37:45 2023 +0200 newlib: Add missing prototype for _getentropy Diff: --- newlib/libc/include/sys/unistd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/uni= std.h index 807407700..25532251c 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -262,6 +262,7 @@ void * _sbrk (ptrdiff_t __incr); int _unlink (const char *__path); _READ_WRITE_RETURN_TYPE _write (int __fd, const void *__buf, size_t __nbyt= e); int _execve (const char *__path, char * const __argv[], char * const _= _envp[]); +int _getentropy (void *, size_t); #endif =20 #if !defined(__INSIDE_CYGWIN__)