]> git.saurik.com Git - wxWidgets.git/blobdiff - src/zlib/adler32.c
include "ToolUtils.h" for LoWord and friends
[wxWidgets.git] / src / zlib / adler32.c
index 594117a983c5aa9e41b0d8327d8ffc598e23f640..853298d03d92a74fb358b5bfd2108c3d623630db 100644 (file)
@@ -1,5 +1,5 @@
 /* adler32.c -- compute the Adler-32 checksum 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
  */
 
@@ -18,7 +18,7 @@
 #define DO16(buf)   DO8(buf,0); DO8(buf,8);
 
 /* ========================================================================= */
-#if defined(__VISAGECPP__) // Visual game can't handle this antiquated interface
+#if defined(__VISAGECPP__) /* Visualage can't handle this antiquated interface */
 uLong ZEXPORT adler32 (uLong adler, const Bytef* buf, uInt len)
 #else
 uLong ZEXPORT adler32(adler, buf, len)