From e71628b889de43ce37b76286a9bd204ac5efab3e Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 4 Aug 2022 21:02:11 +0200 Subject: [PATCH] Cygwin: drop obsolete _cygwin_noncygwin_dll_entry entry point This was obsoleted more than 22 years ago. Time to drop it. Signed-off-by: Corinna Vinschen --- 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/include/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 *ptr) \ -{ \ - return _cygwin_dll_entry (h, reason, ptr); \ -} \ #endif /* __CYGWIN_CYGWIN_DLL_H__ */