]> git.saurik.com Git - wxWidgets.git/blobdiff - src/zlib/crc32.c
Fixed some problems in converting existing static libs into DLLs.
[wxWidgets.git] / src / zlib / crc32.c
index f607e6d3ae81486630ccd99185bcc303b48353a0..05ccd7a6ab83275efffa81097e76d3ea589e2bff 100644 (file)
@@ -1,5 +1,5 @@
 /* crc32.c -- compute the CRC-32 of a data stream
- * Copyright (C) 1995-1998 Mark Adler
+ * Copyright (C) 1995-2002 Mark Adler
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
@@ -139,7 +139,7 @@ const uLongf * ZEXPORT get_crc_table()
 #define DO8(buf)  DO4(buf); DO4(buf);
 
 /* ========================================================================= */
-#if defined(__VISAGECPP__) // Visual game can't handle this antiquated interface
+#if defined(__VISAGECPP__) /* Visualage can't handle this antiquated interface */
 uLong ZEXPORT crc32(uLong crc, const Bytef* buf, uInt len)
 #else
 uLong ZEXPORT crc32(crc, buf, len)