]> git.saurik.com Git - wxWidgets.git/blobdiff - src/zlib/gzio.c
Applied #15375 to stop event-sending in generic wxSpinCtrl ctor (eco)
[wxWidgets.git] / src / zlib / gzio.c
index 7e90f4928fc0b67a4a4a5c76ab289394c41c7e55..90483f88643159c368fa6ff0ae30dc50ce5885ef 100644 (file)
@@ -5,7 +5,6 @@
  * Compile this file with -DNO_GZCOMPRESS to avoid the compression code.
  */
 
-/* @(#) $Id$ */
 
 #include <stdio.h>
 
@@ -43,6 +42,12 @@ extern void   free   OF((voidpf ptr));
 #define ALLOC(size) malloc(size)
 #define TRYFREE(p) {if (p) free(p);}
 
+/* there is no errno under Windows CE, provide a dummy one to avoid modifying
+   too much code in this file */
+#ifdef _WIN32_WCE
+static int errno;
+#endif
+
 static int const gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
 
 /* gzip flag byte */