From 2a7da3f5648684df07126e94a96dc5bb82a9ba65 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 29 Sep 2000 13:53:35 +0000 Subject: Standardize on __CYGWIN__ rather than __CYGWIN32__ macro. Doesn't matter either way (although the former is preferred by the Cygwin folks themselves), but using only one seems nicer. --- src/utils/dllinit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/utils/dllinit.c') diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index 3e8fb861a0..06fbdccc82 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -43,14 +43,14 @@ BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, LPVOID reserved /* Not used. */ ); -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ #include DECLARE_CYGWIN_DLL(DllMain); /* save hInstance from DllMain */ HINSTANCE __hDllInstance_base; -#endif /* __CYGWIN32__ */ +#endif /* __CYGWIN__ */ struct _reent *_impure_ptr; @@ -80,9 +80,9 @@ DllMain( LPVOID reserved /* Not used. */ ) { -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ __hDllInstance_base = hInst; -#endif /* __CYGWIN32__ */ +#endif /* __CYGWIN__ */ _impure_ptr = __imp_reent_data; -- cgit v1.2.1