From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 560D238582AE; Thu, 4 Aug 2022 20:14:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 560D238582AE 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] Cygwin: drop obsolete _cygwin_noncygwin_dll_entry entry point X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: c2aa5b6d74139cc2236f4cdf415d7a133a61042d X-Git-Newrev: e71628b889de43ce37b76286a9bd204ac5efab3e Message-Id: <20220804201431.560D238582AE@sourceware.org> Date: Thu, 4 Aug 2022 20:14:31 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Aug 2022 20:14:31 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3De71628b889d= e43ce37b76286a9bd204ac5efab3e commit e71628b889de43ce37b76286a9bd204ac5efab3e Author: Corinna Vinschen Date: Thu Aug 4 21:02:11 2022 +0200 Cygwin: drop obsolete _cygwin_noncygwin_dll_entry entry point =20 This was obsoleted more than 22 years ago. Time to drop it. =20 Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/include/cygwin/cygwin_dll.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/winsup/cygwin/include/cygwin/cygwin_dll.h b/winsup/cygwin/incl= ude/cygwin/cygwin_dll.h index 56b4363ce..10a8bc7ed 100644 --- a/winsup/cygwin/include/cygwin/cygwin_dll.h +++ b/winsup/cygwin/include/cygwin/cygwin_dll.h @@ -86,11 +86,5 @@ int WINAPI _cygwin_dll_entry (HINSTANCE h, DWORD reason,= void *ptr) \ } \ return ret; \ } \ - \ -/* OBSOLETE: This is only provided for source level compatibility. */ = \ -int WINAPI _cygwin_noncygwin_dll_entry (HINSTANCE h, DWORD reason, void *p= tr) \ -{ \ - return _cygwin_dll_entry (h, reason, ptr); \ -} \ =20 #endif /* __CYGWIN_CYGWIN_DLL_H__ */