SF patch 404928: Support for next Cygwin gcc (2.95.2-8)
diff --git a/Modules/gdbmmodule.c b/Modules/gdbmmodule.c
index 91bebbd..5f83a28 100644
--- a/Modules/gdbmmodule.c
+++ b/Modules/gdbmmodule.c
@@ -11,7 +11,7 @@
 #include <fcntl.h>
 #include "gdbm.h"
 
-#ifdef WIN32
+#if defined(WIN32) && !defined(__CYGWIN__)
 #include "gdbmerrno.h"
 extern const char * gdbm_strerror(gdbm_error);
 #endif