From e0cea6514519f0516cdaee5c739a7ac7f6dc0c91 Mon Sep 17 00:00:00 2001 From: kosaki Date: Sun, 18 Oct 2015 02:08:56 +0000 Subject: * dln.c: simplify #ifdef. _WIN32 and __CYGWIN__ are exclusive. see include/ruby/defines.h * gc.c: ditto. * ext/sdbm/_sdbm.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52167 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dln.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dln.c') diff --git a/dln.c b/dln.c index e5269ca441..55fe01239c 100644 --- a/dln.c +++ b/dln.c @@ -1117,12 +1117,12 @@ dln_sym(const char *name) #endif #endif -#if defined _WIN32 && !defined __CYGWIN__ +#ifdef _WIN32 #include #include #endif -#if defined _WIN32 && !defined __CYGWIN__ +#ifdef _WIN32 static const char * dln_strerror(char *message, size_t size) { @@ -1254,7 +1254,7 @@ dln_load(const char *file) #define DLN_ERROR() (error = dln_strerror(), strcpy(ALLOCA_N(char, strlen(error) + 1), error)) #endif -#if defined _WIN32 && !defined __CYGWIN__ +#if defined _WIN32 HINSTANCE handle; WCHAR *winfile; char message[1024]; -- cgit v1.2.3