From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 3679D3858D20; Mon, 29 Jan 2024 15:43:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3679D3858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1706542986; bh=C8pzDtctz34cq4uLCjy3d9EpWOfqtrOwErzHyUmeLbE=; h=From:To:Subject:Date:From; b=BiiggWllV+c69mbaf6GU1eev4bSvx4Y+/o9aSSMBrORWl9I8rWWcHK1uKENgGBMv/ jv2dP94RGJWp0c2MJgJZcXAXRXYpq3S1ItIotobjWjslBqu//wRms6Irfbs1Z8RT6d KBG8cIi84xd2t0Y3ZIHHBTWCrQHPOvw5h+etoNt0= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/main] Cygwin: machine/_arc4random.h: Fix copy/paste bug X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/main X-Git-Oldrev: 497e6eb2c0fadd0d4cb4ed418642832b020b19d4 X-Git-Newrev: 6252fd0265347032c46c95367895ddb838856bd2 Message-Id: <20240129154306.3679D3858D20@sourceware.org> Date: Mon, 29 Jan 2024 15:43:06 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D6252fd02653= 47032c46c95367895ddb838856bd2 commit 6252fd0265347032c46c95367895ddb838856bd2 Author: Corinna Vinschen AuthorDate: Mon Jan 29 16:42:50 2024 +0100 Commit: Corinna Vinschen CommitDate: Mon Jan 29 16:42:50 2024 +0100 Cygwin: machine/_arc4random.h: Fix copy/paste bug =20 Remove a stray __END_DECLS. It didn't hurt in the only (plain C) file including this header, but still... =20 Fixes: 030a762535c1 ("Cygwin: fix arc4random after fork(2)") Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/include/machine/_arc4random.h | 1 - 1 file changed, 1 deletion(-) diff --git a/winsup/cygwin/include/machine/_arc4random.h b/winsup/cygwin/in= clude/machine/_arc4random.h index fd3970f64ab2..2f3347e33abf 100644 --- a/winsup/cygwin/include/machine/_arc4random.h +++ b/winsup/cygwin/include/machine/_arc4random.h @@ -35,5 +35,4 @@ _arc4random_forkdetect(void) } #define _ARC4RANDOM_FORKDETECT() _arc4random_forkdetect () =20 -__END_DECLS #endif /* _MACHINE_ARC4RANDOM_H */